aboutsummaryrefslogtreecommitdiff
path: root/shaders/glsl100/posterization.fs
blob: a7942c82e723e070a341fe792cf79dbca9e0a0bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#version 100

precision mediump float;

// Input vertex attributes (from vertex shader)
varying vec2 fragTexCoord;
varying vec4 fragColor;

// 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);
}