Skip to content

Commit

Permalink
Transform alpha channel as well in shader
Browse files Browse the repository at this point in the history
  • Loading branch information
kwolekr committed Apr 25, 2013
1 parent bc3072b commit ddd2b18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/shaders/test_shader_3/opengl_fragment.glsl
Expand Up @@ -9,7 +9,8 @@ void main (void)
vec4 col = texture2D(myTexture, vec2(gl_TexCoord[0]));
col *= gl_Color;
col = col * col; // SRGB -> Linear
col *= 1.8;
col *= 1.8;
col.a = 1.0 - exp(1.0 - col.a) / exp(1.0);
col.r = 1.0 - exp(1.0 - col.r) / exp(1.0);
col.g = 1.0 - exp(1.0 - col.g) / exp(1.0);
col.b = 1.0 - exp(1.0 - col.b) / exp(1.0);
Expand Down

0 comments on commit ddd2b18

Please sign in to comment.