aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBas Nieuwenhuizen <[email protected]>2019-12-30 15:27:21 +0100
committerMarge Bot <[email protected]>2020-01-15 01:54:27 +0000
commit4e3c81517bafe73015e4af4bdce0eae0cab7751c (patch)
treec3c6d8a0493f558709557dac4fe1ef5e15207755 /src
parent6c978b1362ecd40523a87516b3ac8fa2d34b1da9 (diff)
radv: Disable VK_EXT_sample_locations on GFX10.
Workaround for https://gitlab.freedesktop.org/mesa/mesa/issues/2163 CC: <[email protected]> Reviewed-by: Samuel Pitoiset <[email protected]> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3236> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3236>
Diffstat (limited to 'src')
-rw-r--r--src/amd/vulkan/radv_extensions.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_extensions.py b/src/amd/vulkan/radv_extensions.py
index f41bda1c368..be03df7e079 100644
--- a/src/amd/vulkan/radv_extensions.py
+++ b/src/amd/vulkan/radv_extensions.py
@@ -133,7 +133,8 @@ EXTENSIONS = [
Extension('VK_EXT_pipeline_creation_feedback', 1, True),
Extension('VK_EXT_post_depth_coverage', 1, 'device->rad_info.chip_class >= GFX10'),
Extension('VK_EXT_queue_family_foreign', 1, True),
- Extension('VK_EXT_sample_locations', 1, True),
+ # Disable sample locations on GFX10 until the CTS failures have been resolved.
+ Extension('VK_EXT_sample_locations', 1, 'device->rad_info.chip_class < GFX10'),
Extension('VK_EXT_sampler_filter_minmax', 1, 'device->rad_info.chip_class >= GFX7'),
Extension('VK_EXT_scalar_block_layout', 1, 'device->rad_info.chip_class >= GFX7'),
Extension('VK_EXT_shader_demote_to_helper_invocation',1, 'device->use_aco'),