mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 21:51:22 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
	
		
			712 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
		
		
			
		
	
	
			19 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; |