summaryrefslogtreecommitdiffstats
path: root/scene/resources/material.h
diff options
context:
space:
mode:
authorTom Coxon <tom.c.coxon@gmail.com>2021-09-07 16:39:37 +0100
committerTom Coxon <tom.c.coxon@gmail.com>2021-09-21 11:51:39 +0100
commitdbe757102c6503eb564c9edc699c89afe63b91cd (patch)
tree6d65b969a9f7c2e6b67f73bbc3874622be9f065e /scene/resources/material.h
parent93aa158b5e1b3b11c3482834504e791c3898baf0 (diff)
downloadredot-engine-dbe757102c6503eb564c9edc699c89afe63b91cd.tar.gz
Prevent shaders from generating code before the constructor finishes.
Fixes #43733: "creating SpatialMaterial in a separate thread creates invalid shaders (temporarily)." The bug occurred because various setters called in materials' constructors add materials to queues that are processed on the main thread. This means that when the materials are created in another thread, they can be processed on the main thread before the constructor has finished. The fix adds a flag to affected materials that prevents them from being added to the queue until their constructors have finished initialising all the members.
Diffstat (limited to 'scene/resources/material.h')
-rw-r--r--scene/resources/material.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/material.h b/scene/resources/material.h
index e2838e1399..5d7a5324ca 100644
--- a/scene/resources/material.h
+++ b/scene/resources/material.h
@@ -440,6 +440,7 @@ private:
_FORCE_INLINE_ void _queue_shader_change();
_FORCE_INLINE_ bool _is_shader_dirty() const;
+ bool is_initialized = false;
bool orm;
Color albedo;