diff options
Diffstat (limited to 'client/shaders')
-rw-r--r-- | client/shaders/test_shader_3/opengl_fragment.glsl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/shaders/test_shader_3/opengl_fragment.glsl b/client/shaders/test_shader_3/opengl_fragment.glsl index 78abadcaf..e42fef6e5 100644 --- a/client/shaders/test_shader_3/opengl_fragment.glsl +++ b/client/shaders/test_shader_3/opengl_fragment.glsl @@ -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);
|