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
This commit is contained in:
Jason Ekstrand 2017-07-31 11:27:23 -07:00 committed by Emil Velikov
parent ac087eb40d
commit 87ffdbae1c

View file

@ -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),
]