Update posterize2.glsl

This commit is contained in:
myownfriend 2014-05-20 23:55:59 -04:00
parent 8ddad21abc
commit 0ef3a7f233
1 changed files with 9 additions and 10 deletions

View File

@ -8,12 +8,12 @@ float bound(float color)
if (color < 0.35)
{
if (color < 0.25)
{
return color;
}
return 0.5;
}
return 1.0;
return 1.0;
}
void main()
@ -21,4 +21,3 @@ void main()
float4 c0 = texture(samp9, uv0);
ocol0 = float4(bound(c0.r), bound(c0.g), bound(c0.b), c0.a);
}