Module: Mesa Branch: staging/22.1 Commit: 5a1b1a072936e30a11eb3dde6a229b2f6ab68574 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5a1b1a072936e30a11eb3dde6a229b2f6ab68574
Author: Sidney Just <[email protected]> Date: Wed Apr 20 17:49:59 2022 -0400 kopper: add win32 loader interface Reviewed-by: Jesse Natalie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16087> --- include/kopper_interface.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/kopper_interface.h b/include/kopper_interface.h index 1590616f3f0..0f176485f33 100644 --- a/include/kopper_interface.h +++ b/include/kopper_interface.h @@ -43,6 +43,9 @@ #ifdef VK_USE_PLATFORM_WAYLAND_KHR #include <vulkan/vulkan_wayland.h> #endif +#ifdef VK_USE_PLATFORM_WIN32_KHR +#include <vulkan/vulkan_win32.h> +#endif typedef struct __DRIkopperExtensionRec __DRIkopperExtension; typedef struct __DRIkopperLoaderExtensionRec __DRIkopperLoaderExtension; @@ -84,6 +87,9 @@ struct kopper_loader_info { #endif #ifdef VK_USE_PLATFORM_WAYLAND_KHR VkWaylandSurfaceCreateInfoKHR wl; +#endif +#ifdef VK_USE_PLATFORM_WIN32_KHR + VkWin32SurfaceCreateInfoKHR win32; #endif }; int has_alpha;
