1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix union order to simplify empty initializers.

This commit is contained in:
Dario
2025-01-09 10:39:13 -03:00
parent 0e3a5eda86
commit 0e06eb80bc
3 changed files with 17 additions and 17 deletions

View File

@@ -116,11 +116,11 @@ class RendererCanvasRenderRD : public RendererCanvasRender {
struct ShaderSpecialization {
union {
uint32_t packed_0;
struct {
uint32_t use_lighting : 1;
};
uint32_t packed_0;
};
};