summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2018-02-05 19:00:48 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2018-02-09 04:21:24 +0000
commit2b9e16d182a7ce45c4028c440807448a209b08b0 (patch)
treeff9e1df5cb46046cf5ac1e830f71839df9af763e
parent87ffdbae1cdd7975047abdcfef740a75bfdbffd5 (diff)
radv: Stop advertising VK_KHX_multiview
We don't want to advertise experimental extensions in actual releases. However, there's no harm in leaving the code lying around in the tree. [Emil Velikov: port from equivalent ANV commit] Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
-rw-r--r--src/amd/vulkan/radv_extensions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_extensions.py b/src/amd/vulkan/radv_extensions.py
index ee0b5e7b564..43c0fa740ee 100644
--- a/src/amd/vulkan/radv_extensions.py
+++ b/src/amd/vulkan/radv_extensions.py
@@ -76,7 +76,7 @@ EXTENSIONS = [
Extension('VK_KHR_wayland_surface', 6, 'VK_USE_PLATFORM_WAYLAND_KHR'),
Extension('VK_KHR_xcb_surface', 6, 'VK_USE_PLATFORM_XCB_KHR'),
Extension('VK_KHR_xlib_surface', 6, 'VK_USE_PLATFORM_XLIB_KHR'),
- Extension('VK_KHX_multiview', 1, True),
+ Extension('VK_KHX_multiview', 1, False),
Extension('VK_EXT_global_priority', 1, 'device->rad_info.has_ctx_priority'),
Extension('VK_AMD_draw_indirect_count', 1, True),
Extension('VK_AMD_rasterization_order', 1, 'device->rad_info.chip_class >= VI && device->rad_info.max_se >= 2'),