Fix reallocation of GPU renderer vertex buffer

This commit is contained in:
Jaan Soulier
2025-09-09 23:05:11 -04:00
committed by Sam Lantinga
parent 7840c9d879
commit ed6a72a7fd

View File

@@ -722,6 +722,8 @@ static bool InitVertexBuffer(GPU_RenderData *data, Uint32 size)
return false; return false;
} }
data->vertices.buffer_size = size;
return true; return true;
} }