diff options
author | Alula <6276139+alula@users.noreply.github.com> | 2024-05-24 15:07:22 +0200 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-08-28 13:30:44 -0500 |
commit | 346cbc7f1f206f4540520a92bf7def97b9be0af8 (patch) | |
tree | 54b1ec735002410018bccb9e5fc36514adccb667 /drivers | |
parent | f648de1a83cf006dbfdaa075219ad4348628e58f (diff) | |
download | redot-engine-346cbc7f1f206f4540520a92bf7def97b9be0af8.tar.gz |
Add support for compiling with VS clang-cl toolset
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gles3/storage/light_storage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gles3/storage/light_storage.h b/drivers/gles3/storage/light_storage.h index 81e7220439..ed00dd235f 100644 --- a/drivers/gles3/storage/light_storage.h +++ b/drivers/gles3/storage/light_storage.h @@ -203,7 +203,7 @@ struct LightmapInstance { class LightStorage : public RendererLightStorage { public: - enum ShadowAtlastQuadrant { + enum ShadowAtlastQuadrant : uint32_t { QUADRANT_SHIFT = 27, OMNI_LIGHT_FLAG = 1 << 26, SHADOW_INDEX_MASK = OMNI_LIGHT_FLAG - 1, |