Merge pull request #34655 from MadEqua/fix-multimesh-gles3
Reset GLES3 MultiMesh buffer id when reallocating.
This commit is contained in:
commit
2691a8ec71
1 changed files with 1 additions and 0 deletions
|
@ -4454,6 +4454,7 @@ void RasterizerStorageGLES3::multimesh_allocate(RID p_multimesh, int p_instances
|
|||
if (multimesh->buffer) {
|
||||
glDeleteBuffers(1, &multimesh->buffer);
|
||||
multimesh->data.resize(0);
|
||||
multimesh->buffer = 0;
|
||||
}
|
||||
|
||||
multimesh->size = p_instances;
|
||||
|
|
Loading…
Reference in a new issue