2013-03-07 16:46:55 +00:00
|
|
|
void main()
|
2009-08-09 21:40:54 +00:00
|
|
|
{
|
2014-07-29 17:08:57 +00:00
|
|
|
float4 c0 = Sample();
|
2014-05-21 20:38:25 +00:00
|
|
|
float red = 0.0;
|
|
|
|
float blue = 0.0;
|
2013-03-07 16:46:55 +00:00
|
|
|
|
|
|
|
if (c0.r > 0.15 && c0.b > 0.15)
|
|
|
|
{
|
|
|
|
blue = 0.5;
|
|
|
|
red = 0.5;
|
|
|
|
}
|
2011-01-31 00:08:06 +00:00
|
|
|
|
2013-03-07 16:46:55 +00:00
|
|
|
float green = max(c0.r + c0.b, c0.g);
|
2011-01-31 00:08:06 +00:00
|
|
|
|
2014-07-29 17:08:57 +00:00
|
|
|
SetOutput(float4(red, green, blue, 1.0));
|
2013-03-07 16:46:55 +00:00
|
|
|
}
|