dolphin/Data/Sys/Shaders/posterize2.glsl

24 lines
289 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;
float bound(float color)
2011-01-31 00:08:06 +00:00
{
2014-05-21 03:55:59 +00:00
if (color < 0.35)
2011-01-31 00:08:06 +00:00
{
2014-05-21 03:55:59 +00:00
if (color < 0.25)
return color;
return 0.5;
2011-01-31 00:08:06 +00:00
}
2014-05-21 03:55:59 +00:00
return 1.0;
2011-01-31 00:08:06 +00:00
}
2013-03-07 18:51:57 +00:00
void main()
2011-01-31 00:08:06 +00:00
{
2014-05-21 03:55:59 +00:00
float4 c0 = texture(samp9, uv0);
ocol0 = float4(bound(c0.r), bound(c0.g), bound(c0.b), c0.a);
2011-01-31 00:08:06 +00:00
}