Vulkan parameter type fixes

This commit is contained in:
Ethan Lee 2017-08-31 20:56:29 -04:00
parent dc98059905
commit 9cdd0079b4

View File

@ -1816,7 +1816,7 @@ namespace SDL2
public static extern SDL_bool SDL_Vulkan_GetInstanceExtensions( public static extern SDL_bool SDL_Vulkan_GetInstanceExtensions(
IntPtr window, IntPtr window,
out uint pCount, out uint pCount,
out IntPtr pNames IntPtr[] pNames
); );
/* window refers to an SDL_Window. /* window refers to an SDL_Window.
@ -1828,7 +1828,7 @@ namespace SDL2
public static extern SDL_bool SDL_Vulkan_CreateSurface( public static extern SDL_bool SDL_Vulkan_CreateSurface(
IntPtr window, IntPtr window,
IntPtr instance, IntPtr instance,
ref IntPtr surface out IntPtr surface
); );
/* window refers to an SDL_Window*. /* window refers to an SDL_Window*.