diff options
author | clayjohn <claynjohn@gmail.com> | 2020-01-28 10:38:54 -0800 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2020-01-28 10:38:54 -0800 |
commit | ec4d606e07114f04de7fe1a4b980ae44e9288b51 (patch) | |
tree | f401429afb2192a4a50f83aae3c394d393a50665 | |
parent | be1bc53d42577c02cbdf32fff5e2a60234e6270a (diff) |
Add an extra bit to material flag cache
-rw-r--r-- | scene/resources/material.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/material.h b/scene/resources/material.h index 3c2a7c928a..681e6f4d64 100644 --- a/scene/resources/material.h +++ b/scene/resources/material.h @@ -249,7 +249,7 @@ private: uint64_t blend_mode : 2; uint64_t depth_draw_mode : 2; uint64_t cull_mode : 2; - uint64_t flags : 18; + uint64_t flags : 19; uint64_t detail_blend_mode : 2; uint64_t diffuse_mode : 3; uint64_t specular_mode : 3; |