mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-05 19:08:12 +00:00
Fix emscripten, android, uikit and windows
This commit is contained in:

committed by
Ryan C. Gordon

parent
d0d8b28df1
commit
9224a0a2d8
@@ -152,8 +152,6 @@ extern DECLSPEC void SDLCALL SDL_Vulkan_UnloadLibrary(void);
|
|||||||
*
|
*
|
||||||
* \param pCount A pointer to an unsigned int corresponding to the number of
|
* \param pCount A pointer to an unsigned int corresponding to the number of
|
||||||
* extensions to be returned
|
* extensions to be returned
|
||||||
* \param pNames NULL or a pointer to an array to be filled with required
|
|
||||||
* Vulkan instance extensions
|
|
||||||
* \returns SDL_TRUE on success, SDL_FALSE on error.
|
* \returns SDL_TRUE on success, SDL_FALSE on error.
|
||||||
*
|
*
|
||||||
* \since This function is available since SDL 3.0.0.
|
* \since This function is available since SDL 3.0.0.
|
||||||
|
@@ -36,9 +36,8 @@
|
|||||||
|
|
||||||
int Android_Vulkan_LoadLibrary(SDL_VideoDevice *_this, const char *path);
|
int Android_Vulkan_LoadLibrary(SDL_VideoDevice *_this, const char *path);
|
||||||
void Android_Vulkan_UnloadLibrary(SDL_VideoDevice *_this);
|
void Android_Vulkan_UnloadLibrary(SDL_VideoDevice *_this);
|
||||||
SDL_bool Android_Vulkan_GetInstanceExtensions(SDL_VideoDevice *_this,
|
char const* const* Android_Vulkan_GetInstanceExtensions(SDL_VideoDevice *_this,
|
||||||
unsigned *count,
|
Uint32 *count);
|
||||||
const char **names);
|
|
||||||
SDL_bool Android_Vulkan_CreateSurface(SDL_VideoDevice *_this,
|
SDL_bool Android_Vulkan_CreateSurface(SDL_VideoDevice *_this,
|
||||||
SDL_Window *window,
|
SDL_Window *window,
|
||||||
VkInstance instance,
|
VkInstance instance,
|
||||||
|
@@ -36,9 +36,8 @@
|
|||||||
|
|
||||||
int UIKit_Vulkan_LoadLibrary(SDL_VideoDevice *_this, const char *path);
|
int UIKit_Vulkan_LoadLibrary(SDL_VideoDevice *_this, const char *path);
|
||||||
void UIKit_Vulkan_UnloadLibrary(SDL_VideoDevice *_this);
|
void UIKit_Vulkan_UnloadLibrary(SDL_VideoDevice *_this);
|
||||||
SDL_bool UIKit_Vulkan_GetInstanceExtensions(SDL_VideoDevice *_this,
|
char const* const* UIKit_Vulkan_GetInstanceExtensions(SDL_VideoDevice *_this,
|
||||||
unsigned *count,
|
Uint32 *count);
|
||||||
const char **names);
|
|
||||||
SDL_bool UIKit_Vulkan_CreateSurface(SDL_VideoDevice *_this,
|
SDL_bool UIKit_Vulkan_CreateSurface(SDL_VideoDevice *_this,
|
||||||
SDL_Window *window,
|
SDL_Window *window,
|
||||||
VkInstance instance,
|
VkInstance instance,
|
||||||
|
@@ -36,9 +36,8 @@
|
|||||||
|
|
||||||
int WIN_Vulkan_LoadLibrary(SDL_VideoDevice *_this, const char *path);
|
int WIN_Vulkan_LoadLibrary(SDL_VideoDevice *_this, const char *path);
|
||||||
void WIN_Vulkan_UnloadLibrary(SDL_VideoDevice *_this);
|
void WIN_Vulkan_UnloadLibrary(SDL_VideoDevice *_this);
|
||||||
SDL_bool WIN_Vulkan_GetInstanceExtensions(SDL_VideoDevice *_this,
|
char const* const* WIN_Vulkan_GetInstanceExtensions(SDL_VideoDevice *_this,
|
||||||
unsigned *count,
|
Uint32 *count);
|
||||||
const char **names);
|
|
||||||
SDL_bool WIN_Vulkan_CreateSurface(SDL_VideoDevice *_this,
|
SDL_bool WIN_Vulkan_CreateSurface(SDL_VideoDevice *_this,
|
||||||
SDL_Window *window,
|
SDL_Window *window,
|
||||||
VkInstance instance,
|
VkInstance instance,
|
||||||
|
Reference in New Issue
Block a user