Fix T59145: don't clamp color value in Hue Saturation Value node in eevee

This commit is contained in:
2019-01-24 13:58:59 +01:00
parent 7b35ef23a0
commit 7faf0c8c2f

View File

@@ -858,7 +858,7 @@ void hue_sat(float hue, float sat, float value, float fac, vec4 col, out vec4 ou
hsv[0] = fract(hsv[0] + (hue - 0.5));
hsv[1] = clamp(hsv[1] * sat, 0.0, 1.0);
hsv[2] = clamp(hsv[2] * value, 0.0, 1.0);
hsv[2] = hsv[2] * value;
hsv_to_rgb(hsv, outcol);