Browse Source

Removed SDL_vulkan_internal.h from SDL_sysvideo.h

Reference: https://github.com/libsdl-org/SDL/issues/8142
Sam Lantinga 1 year ago
parent
commit
ee806597b9
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/video/SDL_sysvideo.h

+ 3 - 3
src/video/SDL_sysvideo.h

@@ -23,7 +23,7 @@
 #ifndef SDL_sysvideo_h_
 #define SDL_sysvideo_h_
 
-#include "SDL_vulkan_internal.h"
+#include <SDL3/SDL_vulkan.h>
 
 /* The SDL video driver */
 
@@ -442,8 +442,8 @@ struct SDL_VideoDevice
     /* Data used by the Vulkan drivers */
     struct
     {
-        PFN_vkGetInstanceProcAddr vkGetInstanceProcAddr;
-        PFN_vkEnumerateInstanceExtensionProperties vkEnumerateInstanceExtensionProperties;
+        SDL_FunctionPointer vkGetInstanceProcAddr;
+        SDL_FunctionPointer vkEnumerateInstanceExtensionProperties;
         int loader_loaded;
         char loader_path[256];
         void *loader_handle;