1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

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:43:17 +02:00
parent a26fcf58cc
commit b6786595a4
2 changed files with 34 additions and 35 deletions

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)
-----------------------------------------------------------------------