Skip to content

Commit 8b0af7f

Browse files
committed
Backends: SDL: update comments regarding API stability, regarding SDL_GPU and SDL_Renderer.
1 parent aa1b4ea commit 8b0af7f

6 files changed

+36
-36
lines changed

backends/imgui_impl_sdl3.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// dear imgui: Platform Backend for SDL3 (*EXPERIMENTAL*)
2-
// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..)
1+
// dear imgui: Platform Backend for SDL3
2+
// This needs to be used along with a Renderer (e.g. SDL_GPU, DirectX11, OpenGL3, Vulkan..)
33
// (Info: SDL3 is a cross-platform general purpose library for handling windows, inputs, graphics context creation, etc.)
44

5-
// (**IMPORTANT: SDL 3.0.0 is NOT YET RELEASED AND CURRENTLY HAS A FAST CHANGING API. THIS CODE BREAKS OFTEN AS SDL3 CHANGES.**)
6-
75
// Implemented features:
86
// [X] Platform: Clipboard support.
97
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.

backends/imgui_impl_sdl3.h

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// dear imgui: Platform Backend for SDL3 (*EXPERIMENTAL*)
2-
// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..)
1+
// dear imgui: Platform Backend for SDL3
2+
// This needs to be used along with a Renderer (e.g. SDL_GPU, DirectX11, OpenGL3, Vulkan..)
33
// (Info: SDL3 is a cross-platform general purpose library for handling windows, inputs, graphics context creation, etc.)
44

5-
// (**IMPORTANT: SDL 3.0.0 is NOT YET RELEASED AND CURRENTLY HAS A FAST CHANGING API. THIS CODE BREAKS OFTEN AS SDL3 CHANGES.**)
6-
75
// Implemented features:
86
// [X] Platform: Clipboard support.
97
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.

backends/imgui_impl_sdlrenderer2.cpp

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
// dear imgui: Renderer Backend for SDL_Renderer for SDL2
22
// (Requires: SDL 2.0.17+)
33

4-
// Note how SDL_Renderer is an _optional_ component of SDL2.
5-
// For a multi-platform app consider using e.g. SDL+DirectX on Windows and SDL+OpenGL on Linux/OSX.
6-
// If your application will want to render any non trivial amount of graphics other than UI,
7-
// please be aware that SDL_Renderer currently offers a limited graphic API to the end-user and
8-
// it might be difficult to step out of those boundaries.
4+
// Note that SDL_Renderer is an _optional_ component of SDL2, which IMHO is now largely obsolete.
5+
// For a multi-platform app consider using other technologies:
6+
// - SDL3+SDL_GPU: SDL_GPU is SDL3 new graphics abstraction API. You will need to update to SDL3.
7+
// - SDL2+DirectX, SDL2+OpenGL, SDL2+Vulkan: combine SDL with dedicated renderers.
8+
// If your application wants to render any non trivial amount of graphics other than UI,
9+
// please be aware that SDL_Renderer currently offers a limited graphic API to the end-user
10+
// and it might be difficult to step out of those boundaries.
911

1012
// Implemented features:
1113
// [X] Renderer: User texture binding. Use 'SDL_Texture*' as ImTextureID. Read the FAQ about ImTextureID!

backends/imgui_impl_sdlrenderer2.h

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
// dear imgui: Renderer Backend for SDL_Renderer for SDL2
22
// (Requires: SDL 2.0.17+)
33

4-
// Note how SDL_Renderer is an _optional_ component of SDL2.
5-
// For a multi-platform app consider using e.g. SDL+DirectX on Windows and SDL+OpenGL on Linux/OSX.
6-
// If your application will want to render any non trivial amount of graphics other than UI,
7-
// please be aware that SDL_Renderer currently offers a limited graphic API to the end-user and
8-
// it might be difficult to step out of those boundaries.
4+
// Note that SDL_Renderer is an _optional_ component of SDL2, which IMHO is now largely obsolete.
5+
// For a multi-platform app consider using other technologies:
6+
// - SDL3+SDL_GPU: SDL_GPU is SDL3 new graphics abstraction API. You will need to update to SDL3.
7+
// - SDL2+DirectX, SDL2+OpenGL, SDL2+Vulkan: combine SDL with dedicated renderers.
8+
// If your application wants to render any non trivial amount of graphics other than UI,
9+
// please be aware that SDL_Renderer currently offers a limited graphic API to the end-user
10+
// and it might be difficult to step out of those boundaries.
911

1012
// Implemented features:
1113
// [X] Renderer: User texture binding. Use 'SDL_Texture*' as ImTextureID. Read the FAQ about ImTextureID!

backends/imgui_impl_sdlrenderer3.cpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// dear imgui: Renderer Backend for SDL_Renderer for SDL3
2-
// (Requires: SDL 3.0.0+)
3-
4-
// (**IMPORTANT: SDL 3.0.0 is NOT YET RELEASED AND CURRENTLY HAS A FAST CHANGING API. THIS CODE BREAKS OFTEN AS SDL3 CHANGES.**)
5-
6-
// Note how SDL_Renderer is an _optional_ component of SDL3.
7-
// For a multi-platform app consider using e.g. SDL+DirectX on Windows and SDL+OpenGL on Linux/OSX.
8-
// If your application will want to render any non trivial amount of graphics other than UI,
9-
// please be aware that SDL_Renderer currently offers a limited graphic API to the end-user and
10-
// it might be difficult to step out of those boundaries.
2+
// (Requires: SDL 3.1.8+)
3+
4+
// Note that SDL_Renderer is an _optional_ component of SDL3, which IMHO is now largely obsolete.
5+
// For a multi-platform app consider using other technologies:
6+
// - SDL3+SDL_GPU: SDL_GPU is SDL3 new graphics abstraction API.
7+
// - SDL3+DirectX, SDL3+OpenGL, SDL3+Vulkan: combine SDL with dedicated renderers.
8+
// If your application wants to render any non trivial amount of graphics other than UI,
9+
// please be aware that SDL_Renderer currently offers a limited graphic API to the end-user
10+
// and it might be difficult to step out of those boundaries.
1111

1212
// Implemented features:
1313
// [X] Renderer: User texture binding. Use 'SDL_Texture*' as ImTextureID. Read the FAQ about ImTextureID!

backends/imgui_impl_sdlrenderer3.h

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// dear imgui: Renderer Backend for SDL_Renderer for SDL3
2-
// (Requires: SDL 3.0.0+)
3-
4-
// (**IMPORTANT: SDL 3.0.0 is NOT YET RELEASED AND CURRENTLY HAS A FAST CHANGING API. THIS CODE BREAKS OFTEN AS SDL3 CHANGES.**)
5-
6-
// Note how SDL_Renderer is an _optional_ component of SDL3.
7-
// For a multi-platform app consider using e.g. SDL+DirectX on Windows and SDL+OpenGL on Linux/OSX.
8-
// If your application will want to render any non trivial amount of graphics other than UI,
9-
// please be aware that SDL_Renderer currently offers a limited graphic API to the end-user and
10-
// it might be difficult to step out of those boundaries.
2+
// (Requires: SDL 3.1.8+)
3+
4+
// Note that SDL_Renderer is an _optional_ component of SDL3, which IMHO is now largely obsolete.
5+
// For a multi-platform app consider using other technologies:
6+
// - SDL3+SDL_GPU: SDL_GPU is SDL3 new graphics abstraction API.
7+
// - SDL3+DirectX, SDL3+OpenGL, SDL3+Vulkan: combine SDL with dedicated renderers.
8+
// If your application wants to render any non trivial amount of graphics other than UI,
9+
// please be aware that SDL_Renderer currently offers a limited graphic API to the end-user
10+
// and it might be difficult to step out of those boundaries.
1111

1212
// Implemented features:
1313
// [X] Renderer: User texture binding. Use 'SDL_Texture*' as ImTextureID. Read the FAQ about ImTextureID!

0 commit comments

Comments
 (0)