Examples: SDL: Made ImGui_ImplSdlGL3_NewFrame() signature match GL2 one

This commit is contained in:
ocornut
2016-03-25 22:27:43 +01:00
parent e6c2c1fcfd
commit fdc4299c6c
5 changed files with 11 additions and 14 deletions

View File

@@ -9,9 +9,9 @@
struct SDL_Window;
typedef union SDL_Event SDL_Event;
IMGUI_API bool ImGui_ImplSdl_Init(SDL_Window *window);
IMGUI_API bool ImGui_ImplSdl_Init(SDL_Window* window);
IMGUI_API void ImGui_ImplSdl_Shutdown();
IMGUI_API void ImGui_ImplSdl_NewFrame(SDL_Window *window);
IMGUI_API void ImGui_ImplSdl_NewFrame(SDL_Window* window);
IMGUI_API bool ImGui_ImplSdl_ProcessEvent(SDL_Event* event);
// Use if you want to reset your rendering device without losing ImGui state.