mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
radv: disable VK_EXT_sample_locations again on GFX10+
I attempted to enable it for 21.0, only 2x and 4x were supported but there is new failures if DCC+MSAA is enabled. Disable it again because DCC is more important than this feature and no Mesa releases have it on GFX10+. 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/8472>
This commit is contained in:
parent
09bf6910b0
commit
afad13700a
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ EXTENSIONS = [
|
|||
Extension('VK_EXT_private_data', 1, True),
|
||||
Extension('VK_EXT_queue_family_foreign', 1, True),
|
||||
Extension('VK_EXT_robustness2', 1, True),
|
||||
Extension('VK_EXT_sample_locations', 1, True),
|
||||
Extension('VK_EXT_sample_locations', 1, 'device->rad_info.chip_class < GFX10'),
|
||||
Extension('VK_EXT_sampler_filter_minmax', 2, True),
|
||||
Extension('VK_EXT_scalar_block_layout', 1, 'device->rad_info.chip_class >= GFX7'),
|
||||
Extension('VK_EXT_shader_atomic_float', 1, True),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue