Compare commits
	
		
			2 Commits
		
	
	
		
			7f8d05101e
			...
			7e0dc75b9a
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 7e0dc75b9a | |||
| 6f0ecab671 | 
@@ -27,24 +27,20 @@ struct SDL_Renderer;
 | 
			
		||||
struct _SDL_GameController;
 | 
			
		||||
typedef union SDL_Event SDL_Event;
 | 
			
		||||
 | 
			
		||||
// FIX(paoda)
 | 
			
		||||
extern "C" {
 | 
			
		||||
    // Follow "Getting Started" link and check examples/ folder to learn about using backends!
 | 
			
		||||
    IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window, void* sdl_gl_context);
 | 
			
		||||
    IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForVulkan(SDL_Window* window);
 | 
			
		||||
    IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForD3D(SDL_Window* window);
 | 
			
		||||
    IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForMetal(SDL_Window* window);
 | 
			
		||||
    IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForSDLRenderer(SDL_Window* window, SDL_Renderer* renderer);
 | 
			
		||||
    IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForOther(SDL_Window* window);
 | 
			
		||||
    IMGUI_IMPL_API void     ImGui_ImplSDL2_Shutdown();
 | 
			
		||||
    IMGUI_IMPL_API void     ImGui_ImplSDL2_NewFrame();
 | 
			
		||||
    IMGUI_IMPL_API bool     ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event);
 | 
			
		||||
}
 | 
			
		||||
// Follow "Getting Started" link and check examples/ folder to learn about using backends!
 | 
			
		||||
IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window, void* sdl_gl_context);
 | 
			
		||||
IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForVulkan(SDL_Window* window);
 | 
			
		||||
IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForD3D(SDL_Window* window);
 | 
			
		||||
IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForMetal(SDL_Window* window);
 | 
			
		||||
IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForSDLRenderer(SDL_Window* window, SDL_Renderer* renderer);
 | 
			
		||||
IMGUI_IMPL_API bool     ImGui_ImplSDL2_InitForOther(SDL_Window* window);
 | 
			
		||||
IMGUI_IMPL_API void     ImGui_ImplSDL2_Shutdown();
 | 
			
		||||
IMGUI_IMPL_API void     ImGui_ImplSDL2_NewFrame();
 | 
			
		||||
IMGUI_IMPL_API bool     ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event);
 | 
			
		||||
 | 
			
		||||
// Gamepad selection automatically starts in AutoFirst mode, picking first available SDL_Gamepad. You may override this.
 | 
			
		||||
// When using manual mode, caller is responsible for opening/closing gamepad.
 | 
			
		||||
enum ImGui_ImplSDL2_GamepadMode { ImGui_ImplSDL2_GamepadMode_AutoFirst, ImGui_ImplSDL2_GamepadMode_AutoAll, ImGui_ImplSDL2_GamepadMode_Manual };
 | 
			
		||||
// FIX(padoa)
 | 
			
		||||
extern "C" IMGUI_IMPL_API void     ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode, struct _SDL_GameController** manual_gamepads_array = NULL, int manual_gamepads_count = -1);
 | 
			
		||||
IMGUI_IMPL_API void     ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode, struct _SDL_GameController** manual_gamepads_array = NULL, int manual_gamepads_count = -1);
 | 
			
		||||
 | 
			
		||||
#endif // #ifndef IMGUI_DISABLE
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user