Backends: SDLGPU3: Made ImGui_ImplSDLGPU3_PrepareDrawData() reuse GPU Transfer Buffers which were unusually slow to recreate every frame. (#8534)

This commit is contained in:
ocornut
2025-03-31 14:45:29 +02:00
parent a26fcf58cc
commit b6786595a4
2 changed files with 34 additions and 35 deletions
+2
View File
@@ -63,6 +63,8 @@ Other changes:
regardless of ImGuiConfigFlags_NavEnableGamepad being set. (#8508)
- Backends: SDL3: Update for SDL3 api changes: revert SDL_GetClipboardText()
memory ownership change. (#8530, #7801) [@Green-Sky]
- Backends: SDLGPU3: Made ImGui_ImplSDLGPU3_PrepareDrawData() reuse GPU Transfer Buffers
which were unusually slow to recreate every frame. Much faster now. (#8534)
-----------------------------------------------------------------------