Remake resource thread safety and API
* Ensures thread safety when resources are destroyed. * Simplified API by always forcing `ResourceCache::get_ref`, which needs less hacks and is fully thread safe. * Removed RWLock for resources because its not possible to use for the new logic. Should not be a problem. Supersedes #57533
This commit is contained in:
parent
c18d0f2035
commit
e772b65d92
15 changed files with 117 additions and 126 deletions
|
|
@ -701,7 +701,7 @@ void LiveEditor::_res_set_func(int p_id, const StringName &p_prop, const Variant
|
|||
return;
|
||||
}
|
||||
|
||||
Ref<Resource> r = ResourceCache::get(resp);
|
||||
Ref<Resource> r = ResourceCache::get_ref(resp);
|
||||
if (!r.is_valid()) {
|
||||
return;
|
||||
}
|
||||
|
|
@ -728,7 +728,7 @@ void LiveEditor::_res_call_func(int p_id, const StringName &p_method, const Vari
|
|||
return;
|
||||
}
|
||||
|
||||
Ref<Resource> r = ResourceCache::get(resp);
|
||||
Ref<Resource> r = ResourceCache::get_ref(resp);
|
||||
if (!r.is_valid()) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue