summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Ekstrand <jason@jlekstrand.net>2017-07-31 11:27:23 -0700
committerEmil Velikov <emil.l.velikov@gmail.com>2018-02-09 04:20:27 +0000
commit87ffdbae1cdd7975047abdcfef740a75bfdbffd5 (patch)
tree6c34efa7a86be9e3d8a4e1da5e45da589d65d6c6
parentac087eb40daa8323bce1c16175ac34642dc9c50a (diff)
anv: 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. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Conflicts: src/intel/vulkan/anv_device.c
-rw-r--r--src/intel/vulkan/anv_extensions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_extensions.py b/src/intel/vulkan/anv_extensions.py
index b692ec33a33..0f66c59e16b 100644
--- a/src/intel/vulkan/anv_extensions.py
+++ b/src/intel/vulkan/anv_extensions.py
@@ -82,7 +82,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_debug_report', 8, True),
]