Update posterize.glsl

This commit is contained in:
myownfriend 2014-05-20 23:54:52 -04:00
parent 4c1ef9ba80
commit 8ddad21abc
1 changed files with 12 additions and 18 deletions

View File

@ -5,25 +5,19 @@ in vec2 uv0;
void main()
{
float4 c0 = texture(samp9, uv0).rgba;
float red = 0.0;
float green = 0.0;
float blue = 0.0;
float4 c0 = texture(samp9, uv0).rgba;
float red = 0.0;
float green = 0.0;
float blue = 0.0;
if (c0.r > 0.25)
{
red = c0.r;
}
if (c0.r > 0.25)
red = c0.r;
if (c0.g > 0.25)
{
green = c0.g;
}
if (c0.g > 0.25)
green = c0.g;
if (c0.b > 0.25)
{
blue = c0.b;
}
if (c0.b > 0.25)
blue = c0.b;
ocol0 = float4(red, green, blue, 1.0);
}
ocol0 = float4(red, green, blue, 1.0);
}