2023-05-30 20:11:08 +02:00
|
|
|
// dear imgui: Renderer Backend for SDL_Renderer for SDL2
|
2021-09-21 17:12:30 +02:00
|
|
|
// (Requires: SDL 2.0.17+)
|
|
|
|
|
2023-05-30 20:11:08 +02:00
|
|
|
// Note how SDL_Renderer is an _optional_ component of SDL2.
|
2021-09-21 19:29:39 +02:00
|
|
|
// For a multi-platform app consider using e.g. SDL+DirectX on Windows and SDL+OpenGL on Linux/OSX.
|
2021-11-29 12:18:25 +01:00
|
|
|
// If your application will want to render any non trivial amount of graphics other than UI,
|
2023-05-30 20:11:08 +02:00
|
|
|
// please be aware that SDL_Renderer currently offers a limited graphic API to the end-user and
|
|
|
|
// it might be difficult to step out of those boundaries.
|
2021-09-21 19:29:39 +02:00
|
|
|
|
|
|
|
// Implemented features:
|
|
|
|
// [X] Renderer: User texture binding. Use 'SDL_Texture*' as ImTextureID. Read the FAQ about ImTextureID!
|
2023-02-07 12:24:42 +01:00
|
|
|
// [X] Renderer: Large meshes support (64k+ vertices) with 16-bit indices.
|
2021-09-21 17:12:30 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "imgui.h" // IMGUI_IMPL_API
|
|
|
|
|
|
|
|
struct SDL_Renderer;
|
|
|
|
|
2023-05-30 20:15:31 +02:00
|
|
|
IMGUI_IMPL_API bool ImGui_ImplSDLRenderer2_Init(SDL_Renderer* renderer);
|
|
|
|
IMGUI_IMPL_API void ImGui_ImplSDLRenderer2_Shutdown();
|
|
|
|
IMGUI_IMPL_API void ImGui_ImplSDLRenderer2_NewFrame();
|
|
|
|
IMGUI_IMPL_API void ImGui_ImplSDLRenderer2_RenderDrawData(ImDrawData* draw_data);
|
2021-09-21 17:12:30 +02:00
|
|
|
|
|
|
|
// Called by Init/NewFrame/Shutdown
|
2023-05-30 20:15:31 +02:00
|
|
|
IMGUI_IMPL_API bool ImGui_ImplSDLRenderer2_CreateFontsTexture();
|
|
|
|
IMGUI_IMPL_API void ImGui_ImplSDLRenderer2_DestroyFontsTexture();
|
|
|
|
IMGUI_IMPL_API bool ImGui_ImplSDLRenderer2_CreateDeviceObjects();
|
|
|
|
IMGUI_IMPL_API void ImGui_ImplSDLRenderer2_DestroyDeviceObjects();
|