You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Clear material arrays to prevent freeing of invalid texture RID
This commit is contained in:
@@ -2685,6 +2685,14 @@ void MaterialStorage::material_free(RID p_rid) {
|
||||
Material *material = material_owner.get_or_null(p_rid);
|
||||
ERR_FAIL_COND(!material);
|
||||
|
||||
// Need to clear texture arrays to prevent spin locking of their RID's.
|
||||
// This happens when the app is being closed.
|
||||
for (KeyValue<StringName, Variant> &E : material->params) {
|
||||
if (E.value.get_type() == Variant::ARRAY) {
|
||||
Array(E.value).clear();
|
||||
}
|
||||
}
|
||||
|
||||
material_set_shader(p_rid, RID()); //clean up shader
|
||||
material->dependency.deleted_notify(p_rid);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user