dolphin/Data/Sys/Shaders/posterize2.glsl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
225 B
Plaintext
Raw Normal View History

2013-03-07 11:51:57 -07:00
float bound(float color)
2009-08-11 19:51:32 -06:00
{
2014-05-20 21:55:59 -06:00
if (color < 0.35)
2009-08-11 19:51:32 -06:00
{
2014-05-20 21:55:59 -06:00
if (color < 0.25)
return color;
return 0.5;
2009-08-11 19:51:32 -06:00
}
2014-05-20 21:55:59 -06:00
return 1.0;
2009-08-11 19:51:32 -06:00
}
2011-01-30 17:08:06 -07:00
2013-03-07 11:51:57 -07:00
void main()
2009-08-11 19:51:32 -06:00
{
float4 c0 = Sample();
SetOutput(float4(bound(c0.r), bound(c0.g), bound(c0.b), c0.a));
2009-08-11 19:51:32 -06:00
}