2020-10-12 18:34:22 +03:00
// dear imgui: Platform Backend for SDL2
2018-06-08 20:37:33 +03:00
// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..)
// (Info: SDL2 is a cross-platform general purpose library for handling windows, inputs, graphics context creation, etc.)
2018-06-11 13:33:51 +03:00
// Implemented features:
// [X] Platform: Clipboard support.
2021-12-12 13:57:37 +03:00
// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy SDL_SCANCODE_* values will also be supported unless IMGUI_DISABLE_OBSOLETE_KEYIO is set]
2019-04-23 13:26:14 +03:00
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
2021-12-12 13:57:37 +03:00
// [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
2023-02-07 20:55:10 +03:00
// [X] Platform: Basic IME support. App needs to call 'SDL_SetHint(SDL_HINT_IME_SHOW_UI, "1");' before SDL_CreateWindow()!.
2018-06-08 20:37:33 +03:00
2021-06-29 20:54:25 +03:00
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
2021-05-27 14:59:35 +03:00
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
2020-10-14 13:22:53 +03:00
// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp.
// Read online: https://github.com/ocornut/imgui/tree/master/docs
2018-06-08 20:37:33 +03:00
2018-11-01 22:56:36 +03:00
# pragma once
2020-04-07 12:02:29 +03:00
# include "imgui.h" // IMGUI_IMPL_API
2020-04-06 21:23:57 +03:00
2018-06-08 20:37:33 +03:00
struct SDL_Window ;
2022-01-22 16:55:03 +03:00
struct SDL_Renderer ;
2018-06-08 20:37:33 +03:00
typedef union SDL_Event SDL_Event ;
2018-06-21 13:04:00 +03:00
IMGUI_IMPL_API bool ImGui_ImplSDL2_InitForOpenGL ( SDL_Window * window , void * sdl_gl_context ) ;
IMGUI_IMPL_API bool ImGui_ImplSDL2_InitForVulkan ( SDL_Window * window ) ;
2019-06-17 02:11:32 +03:00
IMGUI_IMPL_API bool ImGui_ImplSDL2_InitForD3D ( SDL_Window * window ) ;
2020-02-10 17:13:29 +03:00
IMGUI_IMPL_API bool ImGui_ImplSDL2_InitForMetal ( SDL_Window * window ) ;
2022-01-22 16:55:03 +03:00
IMGUI_IMPL_API bool ImGui_ImplSDL2_InitForSDLRenderer ( SDL_Window * window , SDL_Renderer * renderer ) ;
2018-06-21 13:04:00 +03:00
IMGUI_IMPL_API void ImGui_ImplSDL2_Shutdown ( ) ;
2021-06-29 20:54:25 +03:00
IMGUI_IMPL_API void ImGui_ImplSDL2_NewFrame ( ) ;
2018-11-23 20:12:37 +03:00
IMGUI_IMPL_API bool ImGui_ImplSDL2_ProcessEvent ( const SDL_Event * event ) ;
2021-06-29 20:54:25 +03:00
# ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
static inline void ImGui_ImplSDL2_NewFrame ( SDL_Window * ) { ImGui_ImplSDL2_NewFrame ( ) ; } // 1.84: removed unnecessary parameter
# endif