mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-24 10:44:15 +08:00
radv: enable VK_AMD_mixed_attachment_samples on GFX6-GFX7
Now that dEQP-VK.pipeline.multisample.mixed_attachment_samples.* pass, it should be safe to also enable this extension on these old chips. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4913>
This commit is contained in:
parent
ee1d30ab8a
commit
79347f5cd4
@ -13,3 +13,4 @@ NGG GS support in ACO
|
|||||||
VK_KHR_shader_terminate_invocation on ANV
|
VK_KHR_shader_terminate_invocation on ANV
|
||||||
driconf: add glx_extension_override
|
driconf: add glx_extension_override
|
||||||
driconf: add indirect_gl_extension_override
|
driconf: add indirect_gl_extension_override
|
||||||
|
VK_AMD_mixed_attachment_samples on RADV (GFX6-GFX7).
|
||||||
|
@ -173,8 +173,7 @@ EXTENSIONS = [
|
|||||||
Extension('VK_AMD_gpu_shader_half_float', 2, 'device->rad_info.has_packed_math_16bit'),
|
Extension('VK_AMD_gpu_shader_half_float', 2, 'device->rad_info.has_packed_math_16bit'),
|
||||||
Extension('VK_AMD_gpu_shader_int16', 2, 'device->rad_info.has_packed_math_16bit'),
|
Extension('VK_AMD_gpu_shader_int16', 2, 'device->rad_info.has_packed_math_16bit'),
|
||||||
Extension('VK_AMD_memory_overallocation_behavior', 1, True),
|
Extension('VK_AMD_memory_overallocation_behavior', 1, True),
|
||||||
# Disable mixed attachment samples on GFX6-GFX7 until the CTS failures have been resolved.
|
Extension('VK_AMD_mixed_attachment_samples', 1, True),
|
||||||
Extension('VK_AMD_mixed_attachment_samples', 1, 'device->rad_info.chip_class >= GFX8'),
|
|
||||||
Extension('VK_AMD_rasterization_order', 1, 'device->rad_info.has_out_of_order_rast'),
|
Extension('VK_AMD_rasterization_order', 1, 'device->rad_info.has_out_of_order_rast'),
|
||||||
Extension('VK_AMD_shader_ballot', 1, True),
|
Extension('VK_AMD_shader_ballot', 1, True),
|
||||||
Extension('VK_AMD_shader_core_properties', 2, True),
|
Extension('VK_AMD_shader_core_properties', 2, True),
|
||||||
|
Loading…
Reference in New Issue
Block a user