mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			712 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			712 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| diff --git a/thirdparty/libwebp/sharpyuv/sharpyuv_gamma.c b/thirdparty/libwebp/sharpyuv/sharpyuv_gamma.c
 | |
| index 09028428ac..3184e2b80f 100644
 | |
| --- a/thirdparty/libwebp/sharpyuv/sharpyuv_gamma.c
 | |
| +++ b/thirdparty/libwebp/sharpyuv/sharpyuv_gamma.c
 | |
| @@ -26,7 +26,13 @@ static uint32_t kGammaToLinearTabS[GAMMA_TO_LINEAR_TAB_SIZE + 2];
 | |
|  #define LINEAR_TO_GAMMA_TAB_SIZE (1 << LINEAR_TO_GAMMA_TAB_BITS)
 | |
|  static uint32_t kLinearToGammaTabS[LINEAR_TO_GAMMA_TAB_SIZE + 2];
 | |
|  
 | |
| +// -- GODOT start --
 | |
| +#if defined(_MSC_VER)
 | |
| +static const double kGammaF = 2.222222222222222;
 | |
| +#else
 | |
|  static const double kGammaF = 1. / 0.45;
 | |
| +#endif
 | |
| +// -- GODOT end --
 | |
|  #define GAMMA_TO_LINEAR_BITS 16
 | |
|  
 | |
|  static volatile int kGammaTablesSOk = 0;
 | 
