We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab69d0 commit 782ad61Copy full SHA for 782ad61
src/render/shaders/glsl/CM.glsl
@@ -114,7 +114,7 @@ vec3 tfInvSRGB(vec3 color) {
114
}
115
116
vec3 tfInvExtSRGB(vec3 color) {
117
- // EXR sRGB is the sRGB transfer function mirrored around 0.
+ // EXT sRGB is the sRGB transfer function mirrored around 0.
118
return sign(color) * tfInvSRGB(abs(color));
119
120
@@ -160,7 +160,7 @@ vec3 tfSRGB(vec3 color) {
160
161
162
vec3 tfExtSRGB(vec3 color) {
163
164
return sign(color) * tfSRGB(abs(color));
165
166
0 commit comments