From ec4d606e07114f04de7fe1a4b980ae44e9288b51 Mon Sep 17 00:00:00 2001 From: clayjohn Date: Tue, 28 Jan 2020 10:38:54 -0800 Subject: [PATCH] Add an extra bit to material flag cache --- scene/resources/material.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/resources/material.h b/scene/resources/material.h index 3c2a7c928a6..681e6f4d647 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;