diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2023-05-16 00:31:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 00:31:56 +0200 |
commit | 8cfa19a078ecc7c5690740a8c669d1ecbd04bb0c (patch) | |
tree | 5d5e16393bbca27a0d79835c3e09b15ae6cae937 /editor/editor_resource_preview.h | |
parent | 313f613352960b4d1455f0e179315de5e582b6ea (diff) | |
parent | 0a9f72d5a80c8957ef5172f546c9076089862cef (diff) | |
download | redot-engine-8cfa19a078ecc7c5690740a8c669d1ecbd04bb0c.tar.gz |
Merge pull request #77000 from reduz/make-more-base-nodes-thread-safe
Make more base nodes thread safe
Diffstat (limited to 'editor/editor_resource_preview.h')
-rw-r--r-- | editor/editor_resource_preview.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/editor_resource_preview.h b/editor/editor_resource_preview.h index 96ce672d0e..84835094bb 100644 --- a/editor/editor_resource_preview.h +++ b/editor/editor_resource_preview.h @@ -97,6 +97,8 @@ class EditorResourcePreview : public Node { void _preview_ready(const String &p_path, int p_hash, const Ref<Texture2D> &p_texture, const Ref<Texture2D> &p_small_texture, ObjectID id, const StringName &p_func, const Variant &p_ud, const Dictionary &p_metadata); void _generate_preview(Ref<ImageTexture> &r_texture, Ref<ImageTexture> &r_small_texture, const QueueItem &p_item, const String &cache_base, Dictionary &p_metadata); + int small_thumbnail_size = -1; + static void _thread_func(void *ud); void _thread(); void _iterate(); @@ -106,6 +108,8 @@ class EditorResourcePreview : public Node { Vector<Ref<EditorResourcePreviewGenerator>> preview_generators; + void _update_thumbnail_sizes(); + protected: static void _bind_methods(); |