diff options
author | Eric Engestrom <[email protected]> | 2019-08-09 23:34:29 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-08-09 23:34:31 +0100 |
commit | e4aa0fc63a86be6f5e1015db66d6a4682b7d6876 (patch) | |
tree | 9970a54a3536046f6f026618101070109ce5ce68 /src/intel | |
parent | e2d761de0377391c34c3c2fcc098292066dc0581 (diff) |
anv: add missing `break`
Fixes: f6e7de41d7b15185b746 ("anv: Implement VK_EXT_line_rasterization")
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 1 |
1 files changed, 1 insertions, 0 deletions
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: { |