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

Use proper bitshift for tonemap srgb flag in Forward+ renderer

This commit is contained in:
clayjohn
2025-10-31 18:35:39 -07:00
parent 08705259f2
commit 986786dc8c

View File

@@ -76,7 +76,7 @@ private:
TONEMAP_FLAG_USE_COLOR_CORRECTION = (1 << 3),
TONEMAP_FLAG_USE_FXAA = (1 << 4),
TONEMAP_FLAG_USE_8_BIT_DEBANDING = (1 << 5),
TONEMAP_FLAG_CONVERT_TO_SRGB = (1 << 7),
TONEMAP_FLAG_CONVERT_TO_SRGB = (1 << 6),
};
enum FlagsMobile {