Fix typo, call mesh_instance_free not mesh_free
This commit is contained in:
parent
9b3972ad48
commit
6930ad2777
2 changed files with 2 additions and 2 deletions
|
|
@ -131,6 +131,6 @@ const Rect2 &RendererCanvasRender::Item::get_rect() const {
|
|||
|
||||
RendererCanvasRender::Item::CommandMesh::~CommandMesh() {
|
||||
if (mesh_instance.is_valid()) {
|
||||
RSG::mesh_storage->mesh_free(mesh_instance);
|
||||
RSG::mesh_storage->mesh_instance_free(mesh_instance);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -470,7 +470,7 @@ void RendererSceneCull::_instance_update_mesh_instance(Instance *p_instance) {
|
|||
p_instance->mesh_instance = RSG::mesh_storage->mesh_instance_create(p_instance->base);
|
||||
|
||||
} else {
|
||||
RSG::mesh_storage->mesh_free(p_instance->mesh_instance);
|
||||
RSG::mesh_storage->mesh_instance_free(p_instance->mesh_instance);
|
||||
p_instance->mesh_instance = RID();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue