From 774bbc299fdb0d8334a1c8d0e91dd5823a866381 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 15 Mar 2021 11:49:33 +1000 Subject: [PATCH] lavapipe: add missing break No effect as-is but annoying later. Reviewed-By: Mike Blumenkrantz Part-of: --- src/gallium/frontends/lavapipe/lvp_device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/frontends/lavapipe/lvp_device.c b/src/gallium/frontends/lavapipe/lvp_device.c index 6af4204bac0..8457ac17475 100644 --- a/src/gallium/frontends/lavapipe/lvp_device.c +++ b/src/gallium/frontends/lavapipe/lvp_device.c @@ -516,6 +516,7 @@ VKAPI_ATTR void VKAPI_CALL lvp_GetPhysicalDeviceFeatures2( VkPhysicalDeviceScalarBlockLayoutFeaturesEXT *features = (VkPhysicalDeviceScalarBlockLayoutFeaturesEXT *)ext; features->scalarBlockLayout = true; + break; } default: break;