raylib/shaders/glsl100/posterization.fs

29 lines
601 B
Forth
Raw Normal View History

#version 100
precision mediump float;
2016-05-18 13:04:27 +03:00
// Input vertex attributes (from vertex shader)
varying vec2 fragTexCoord;
2016-05-18 13:04:27 +03:00
varying vec4 fragColor;
2016-05-18 13:04:27 +03:00
// Input uniform values
uniform sampler2D texture0;
uniform vec4 colDiffuse;
// NOTE: Add here your custom variables
float gamma = 0.6;
float numColors = 8.0;
void main()
{
vec3 color = texture2D(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));
gl_FragColor = vec4(color, 1.0);
}