From 9f9d8f59bdc68aab09c8550bfb71ae42d1348fe8 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 2 Nov 2024 19:36:11 +0100 Subject: [PATCH] vulkan: Always include vulkan_win32.h on Windows I am so totally not interested to think about this special header. Also, I had to hunt it down because everything else includes just vulkan.h and only Windows does the custom header. --- gdk/gdkdisplayprivate.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gdk/gdkdisplayprivate.h b/gdk/gdkdisplayprivate.h index 5ba511b92a..62af5ba6ad 100644 --- a/gdk/gdkdisplayprivate.h +++ b/gdk/gdkdisplayprivate.h @@ -31,6 +31,9 @@ #ifdef GDK_RENDERING_VULKAN #include +#ifdef GDK_WINDOWING_WIN32 +#include +#endif #endif G_BEGIN_DECLS