update Dear ImGui to 1.90.6

This commit is contained in:
tildearrow 2025-08-10 04:10:39 -05:00
parent 87ccc2a324
commit 65c0efd990
28 changed files with 788 additions and 388 deletions

View file

@ -753,7 +753,7 @@ bool ImGui_ImplWGPU_Init(ImGui_ImplWGPU_InitInfo* init_info)
// Create buffers with a default size (they will later be grown as needed)
bd->pFrameResources = new FrameResources[bd->numFramesInFlight];
for (int i = 0; i < bd->numFramesInFlight; i++)
for (unsigned int i = 0; i < bd->numFramesInFlight; i++)
{
FrameResources* fr = &bd->pFrameResources[i];
fr->IndexBuffer = nullptr;