From 9b6b5e74fa5eae49c407a6f68962d57e6945d7b1 Mon Sep 17 00:00:00 2001 From: Sidney Just Date: Wed, 20 Apr 2022 17:49:59 -0400 Subject: [PATCH] kopper: add win32 loader interface Reviewed-by: Jesse Natalie Part-of: --- 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 #endif +#ifdef VK_USE_PLATFORM_WIN32_KHR +#include +#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;