From e4aa0fc63a86be6f5e1015db66d6a4682b7d6876 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 9 Aug 2019 23:34:29 +0100 Subject: anv: add missing `break` Fixes: f6e7de41d7b15185b746 ("anv: Implement VK_EXT_line_rasterization") Signed-off-by: Eric Engestrom Reviewed-by: Jason Ekstrand --- src/intel/vulkan/anv_device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index a41f602f023..8f80faae633 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1107,6 +1107,7 @@ void anv_GetPhysicalDeviceFeatures2( features->stippledRectangularLines = false; features->stippledBresenhamLines = true; features->stippledSmoothLines = false; + break; } case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES: { -- cgit v1.2.1