Module: Mesa Branch: staging/22.1 Commit: 88b07e972b2461eea0b0b25aa7655ec40880db51 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=88b07e972b2461eea0b0b25aa7655ec40880db51
Author: Sidney Just <[email protected]> Date: Wed Apr 20 17:48:30 2022 -0400 zink: support VK_KHR_win32_surface Reviewed-by: Jesse Natalie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16087> --- src/gallium/drivers/zink/zink_instance.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/zink/zink_instance.py b/src/gallium/drivers/zink/zink_instance.py index 8c37500f1c1..fdaa83ddb48 100644 --- a/src/gallium/drivers/zink/zink_instance.py +++ b/src/gallium/drivers/zink/zink_instance.py @@ -45,6 +45,7 @@ EXTENSIONS = [ Extension("VK_KHR_wayland_surface"), Extension("VK_KHR_xcb_surface", conditions=["!instance_info->disable_xcb_surface"]), + Extension("VK_KHR_win32_surface"), ] # constructor: Layer(name, conditions=[])
