SDL_bool to int (with usual 0==success, -1==error semantics) */ SDL_DECLSPEC SDL_bool SDLCALL SDL_Vulkan_CreateSurface(SDL_Window *window, VkInstance vkinst, VkSurfaceKHR *psurf) { - return SDL3_Vulkan_CreateSurface(window, vkinst, NULL, psurf); + return (SDL3_Vulkan_CreateSurface...
SDL_Vulkan_CreateSurface() now takes a VkAllocationCallbacks pointer as its third parameter. If you don't have an allocator to supply, pass a NULL here to use the system default allocator (SDL2 always used the system default allocator here). SDL_Vulkan_GetDrawableSize() has been removed. ...
This is the raw contents of SDL's wiki. You can edit this through GitHub or at https://wiki.libsdl.org/ now! - sdlwiki/SDL2/SDL_Vulkan_CreateSurface.md at 18840f790abe32827890f6998556cc104a602e54 · libsdl-org/sdlwiki
SDL_bool to int (with usual 0==success, -1==error semantics) */ SDL_DECLSPEC SDL_bool SDLCALL SDL_Vulkan_CreateSurface(SDL_Window *window, VkInstance vkinst, VkSurfaceKHR *psurf) { - return SDL3_Vulkan_CreateSurface(window, vkinst, NULL, psurf); + return (SDL3_Vulkan_CreateSurface...