You've already forked godot
							
							
				mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-03 11:50:27 +00:00 
			
		
		
		
	Merge pull request #112272 from clayjohn/rd-tonemap-flag
Use proper bitshift for tonemap srgb flag in Forward+ renderer
This commit is contained in:
		@@ -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 {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user