aboutsummaryrefslogtreecommitdiff
path: root/shaders/gl330/posterization.fs
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-04-07 11:48:09 +0200
committerraysan5 <raysan5@gmail.com>2016-04-07 11:48:09 +0200
commit78b502b0bf1ee796d86837c611150ed5f8d58fd2 (patch)
treef0efc476e32c3141e7a3395f32ac971caa478649 /shaders/gl330/posterization.fs
parent3b67a4cfba7d3b5dca805b1d1718fd2c9db64e99 (diff)
downloadraylib-78b502b0bf1ee796d86837c611150ed5f8d58fd2.tar.gz
raylib-78b502b0bf1ee796d86837c611150ed5f8d58fd2.zip
Folders rename for consistency on shaders version
Diffstat (limited to 'shaders/gl330/posterization.fs')
-rw-r--r--shaders/gl330/posterization.fs26
1 files changed, 0 insertions, 26 deletions
diff --git a/shaders/gl330/posterization.fs b/shaders/gl330/posterization.fs
deleted file mode 100644
index 5215bd8b..00000000
--- a/shaders/gl330/posterization.fs
+++ /dev/null
@@ -1,26 +0,0 @@
-#version 330
-
-in vec2 fragTexCoord;
-
-out vec4 fragColor;
-
-uniform sampler2D texture0;
-uniform vec4 fragTintColor;
-
-// NOTE: Add here your custom variables
-
-float gamma = 0.6;
-float numColors = 8.0;
-
-void main()
-{
- vec3 color = texture(texture0, fragTexCoord.xy).rgb;
-
- color = pow(color, vec3(gamma, gamma, gamma));
- color = color*numColors;
- color = floor(color);
- color = color/numColors;
- color = pow(color, vec3(1.0/gamma));
-
- fragColor = vec4(color, 1.0);
-} \ No newline at end of file