mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 00:10:20 +01:00
v3dv: enable VK_KHR_shader_relaxed_extended_instruction
The extension only affects non semantic instructions that need no handling in the backend compiler. Signed-off-by: Rohan Garg <rohan.garg@intel.com> Acked-by: Faith Ekstrand <faith.ekstrand@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30791>
This commit is contained in:
parent
a03b307eea
commit
97f41bc819
1 changed files with 4 additions and 0 deletions
|
|
@ -177,6 +177,7 @@ get_device_extensions(const struct v3dv_physical_device *device,
|
|||
.KHR_shader_expect_assume = true,
|
||||
.KHR_shader_float_controls = true,
|
||||
.KHR_shader_non_semantic_info = true,
|
||||
.KHR_shader_relaxed_extended_instruction = true,
|
||||
.KHR_sampler_mirror_clamp_to_edge = true,
|
||||
.KHR_sampler_ycbcr_conversion = true,
|
||||
.KHR_spirv_1_4 = true,
|
||||
|
|
@ -507,6 +508,9 @@ get_features(const struct v3dv_physical_device *physical_device,
|
|||
/* VK_EXT_swapchain_maintenance1 */
|
||||
.swapchainMaintenance1 = true,
|
||||
#endif
|
||||
|
||||
/* VK_KHR_shader_relaxed_extended_instruction */
|
||||
.shaderRelaxedExtendedInstruction = true,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue