From 1efbfd370bf3faecf52422d807f914d773c1855e Mon Sep 17 00:00:00 2001 From: Serdar Kocdemir Date: Thu, 10 Oct 2024 11:22:03 +0100 Subject: [PATCH] gfxstream: Use KHR version of the line_rasterization extension Vulkan headers are exposing KHR version of the extension. Without this change, codegen won't generate the necessary guest code, and the calls with the extension structures will be skipped, causing dEQP failures. Test: dEQP-VK.api.info.vulkan1p2_limits_validation* Reviewed-by: Gurchetan Singh Part-of: --- src/gfxstream/codegen/scripts/cerealgenerator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gfxstream/codegen/scripts/cerealgenerator.py b/src/gfxstream/codegen/scripts/cerealgenerator.py index 60331a407c9..f770631d70c 100644 --- a/src/gfxstream/codegen/scripts/cerealgenerator.py +++ b/src/gfxstream/codegen/scripts/cerealgenerator.py @@ -47,7 +47,7 @@ SUPPORTED_FEATURES = [ "VK_NV_shader_subgroup_partitioned", "VK_KHR_shader_subgroup_extended_types", "VK_EXT_provoking_vertex", - "VK_EXT_line_rasterization", + "VK_KHR_line_rasterization", "VK_EXT_transform_feedback", "VK_EXT_primitive_topology_list_restart", "VK_EXT_index_type_uint8",