diff options
author | aap <aap@papnet.eu> | 2021-02-15 14:55:31 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2021-02-15 15:06:45 +0100 |
commit | edc77d7f00f021e78b041cbd7c4ca3a8827e1ab4 (patch) | |
tree | d30023d4cce3c27d79b22d463f1f9defc28319cd /src/extras/shaders/contrast.frag | |
parent | Revert "always console for windows Debug builds" (diff) | |
download | re3-edc77d7f00f021e78b041cbd7c4ca3a8827e1ab4.tar re3-edc77d7f00f021e78b041cbd7c4ca3a8827e1ab4.tar.gz re3-edc77d7f00f021e78b041cbd7c4ca3a8827e1ab4.tar.bz2 re3-edc77d7f00f021e78b041cbd7c4ca3a8827e1ab4.tar.lz re3-edc77d7f00f021e78b041cbd7c4ca3a8827e1ab4.tar.xz re3-edc77d7f00f021e78b041cbd7c4ca3a8827e1ab4.tar.zst re3-edc77d7f00f021e78b041cbd7c4ca3a8827e1ab4.zip |
Diffstat (limited to 'src/extras/shaders/contrast.frag')
-rw-r--r-- | src/extras/shaders/contrast.frag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extras/shaders/contrast.frag b/src/extras/shaders/contrast.frag index 1b93f6fe..2d394f66 100644 --- a/src/extras/shaders/contrast.frag +++ b/src/extras/shaders/contrast.frag @@ -12,7 +12,7 @@ main(void) vec4 dst = texture(tex0, vec2(v_tex0.x, 1.0-v_tex0.y)); vec4 color; color.rgb = dst.rgb*u_contrastMult + u_contrastAdd; - color.a = 1.0f; + color.a = 1.0; FRAGCOLOR(color); } |