Merge pull request #641 from idontcares31249/master

Fix missing nk_sdl_handle_grab declarations in SDL demo headers
This commit is contained in:
Rob Loach 2024-05-22 16:24:14 -04:00 committed by GitHub
commit 72198bb2e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,7 @@ NK_API void nk_sdl_font_stash_end(void);
NK_API int nk_sdl_handle_event(SDL_Event *evt); NK_API int nk_sdl_handle_event(SDL_Event *evt);
NK_API void nk_sdl_render(enum nk_anti_aliasing); NK_API void nk_sdl_render(enum nk_anti_aliasing);
NK_API void nk_sdl_shutdown(void); NK_API void nk_sdl_shutdown(void);
NK_API void nk_sdl_handle_grab(void);
#endif #endif
/* /*

View File

@ -24,6 +24,7 @@ NK_API void nk_sdl_render(enum nk_anti_aliasing , int max_vertex
NK_API void nk_sdl_shutdown(void); NK_API void nk_sdl_shutdown(void);
NK_API void nk_sdl_device_destroy(void); NK_API void nk_sdl_device_destroy(void);
NK_API void nk_sdl_device_create(void); NK_API void nk_sdl_device_create(void);
NK_API void nk_sdl_handle_grab(void);
#endif #endif

View File

@ -27,6 +27,7 @@ NK_API void nk_sdl_render(enum nk_anti_aliasing , int max_vertex
NK_API void nk_sdl_shutdown(void); NK_API void nk_sdl_shutdown(void);
NK_API void nk_sdl_device_destroy(void); NK_API void nk_sdl_device_destroy(void);
NK_API void nk_sdl_device_create(void); NK_API void nk_sdl_device_create(void);
NK_API void nk_sdl_handle_grab(void);
#endif #endif

View File

@ -18,6 +18,7 @@ NK_API void nk_sdl_font_stash_end(void);
NK_API int nk_sdl_handle_event(SDL_Event *evt); NK_API int nk_sdl_handle_event(SDL_Event *evt);
NK_API void nk_sdl_render(enum nk_anti_aliasing); NK_API void nk_sdl_render(enum nk_anti_aliasing);
NK_API void nk_sdl_shutdown(void); NK_API void nk_sdl_shutdown(void);
NK_API void nk_sdl_handle_grab(void);
#if SDL_COMPILEDVERSION < SDL_VERSIONNUM(2, 0, 22) #if SDL_COMPILEDVERSION < SDL_VERSIONNUM(2, 0, 22)
/* Metal API does not support cliprects with negative coordinates or large /* Metal API does not support cliprects with negative coordinates or large