summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@intel.com>2019-08-09 23:34:29 +0100
committerEric Engestrom <eric.engestrom@intel.com>2019-08-09 23:34:31 +0100
commite4aa0fc63a86be6f5e1015db66d6a4682b7d6876 (patch)
tree9970a54a3536046f6f026618101070109ce5ce68
parente2d761de0377391c34c3c2fcc098292066dc0581 (diff)
downloadmesa-e4aa0fc63a86be6f5e1015db66d6a4682b7d6876.tar.gz
anv: add missing `break`
Fixes: f6e7de41d7b15185b746 ("anv: Implement VK_EXT_line_rasterization") Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
-rw-r--r--src/intel/vulkan/anv_device.c1
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: {