Fix reallocation of GPU renderer vertex buffer

(cherry picked from commit ed6a72a7fd)
This commit is contained in:
Jaan Soulier
2025-09-09 23:05:11 -04:00
committed by Sam Lantinga
parent e5b9dfd181
commit 35408a2126

View File

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