dolphin/Data/Sys/Shaders/posterize.glsl

24 lines
312 B
Plaintext
Raw Normal View History

2013-03-07 18:51:57 +00:00
uniform sampler2D samp9;
2011-01-31 00:08:06 +00:00
2013-03-07 18:51:57 +00:00
out vec4 ocol0;
in vec2 uv0;
void main()
2011-01-31 00:08:06 +00:00
{
2014-05-21 03:54:52 +00:00
float4 c0 = texture(samp9, uv0).rgba;
float red = 0.0;
float green = 0.0;
float blue = 0.0;
2011-01-31 00:08:06 +00:00
2014-05-21 03:54:52 +00:00
if (c0.r > 0.25)
red = c0.r;
2011-01-31 00:08:06 +00:00
2014-05-21 03:54:52 +00:00
if (c0.g > 0.25)
green = c0.g;
2011-01-31 00:08:06 +00:00
2014-05-21 03:54:52 +00:00
if (c0.b > 0.25)
blue = c0.b;
2011-01-31 00:08:06 +00:00
2014-05-21 03:54:52 +00:00
ocol0 = float4(red, green, blue, 1.0);
}