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