Merge pull request #15760 from eska014/es3-copy-shader
Fix copy shader in GLSL ES 3.0
This commit is contained in:
commit
14b230f35f
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ void main() {
|
|||
|
||||
#ifdef SRGB_TO_LINEAR
|
||||
|
||||
color.rgb = mix(pow((color.rgb + vec3(0.055)) * (1.0 / (1 + 0.055)),vec3(2.4)),color.rgb * (1.0 / 12.92),lessThan(color.rgb,vec3(0.04045)));
|
||||
color.rgb = mix(pow((color.rgb + vec3(0.055)) * (1.0 / (1.0 + 0.055)),vec3(2.4)),color.rgb * (1.0 / 12.92),lessThan(color.rgb,vec3(0.04045)));
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG_GRADIENT
|
||||
|
|
Loading…
Reference in a new issue