mirror of
https://github.com/ocornut/imgui.git
synced 2025-09-06 19:38:28 +00:00
imgui_impl_sdl and main sample
This commit is contained in:
12
examples/opengl_sdl_example/imgui_impl_sdl.h
Normal file
12
examples/opengl_sdl_example/imgui_impl_sdl.h
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
struct SDL_Window;
|
||||
|
||||
bool ImGui_ImplSdl_Init(SDL_Window *window);
|
||||
void ImGui_ImplSdl_Shutdown();
|
||||
bool ImGui_ImplSdl_NewFrame(SDL_Window *window);
|
||||
|
||||
void ImGui_ImplSdl_InvalidateDeviceObjects();
|
||||
bool ImGui_ImplSdl_CreateDeviceObjects();
|
||||
|
||||
void ImGui_ImplSdl_KeyCallback(int key, int, bool down);
|
||||
void ImGui_ImplSdl_CharCallback(unsigned int c);
|
Reference in New Issue
Block a user