2013-03-07 16:46:55 +00:00
|
|
|
void main()
|
2010-06-23 04:53:43 +00:00
|
|
|
{
|
2014-07-29 17:08:57 +00:00
|
|
|
float4 c0 = Sample();
|
2014-05-21 03:58:02 +00:00
|
|
|
|
2013-03-07 16:46:55 +00:00
|
|
|
// Same coefficients as grayscale2 at this point
|
|
|
|
float avg = (0.222 * c0.r) + (0.707 * c0.g) + (0.071 * c0.b);
|
|
|
|
float red=avg;
|
2014-05-21 03:58:02 +00:00
|
|
|
|
2013-03-07 16:46:55 +00:00
|
|
|
// Not sure about these coefficients, they just seem to produce the proper yellow
|
|
|
|
float green=avg*.75;
|
|
|
|
float blue=avg*.5;
|
2014-07-29 17:08:57 +00:00
|
|
|
SetOutput(float4(red, green, blue, c0.a));
|
2013-03-07 16:46:55 +00:00
|
|
|
}
|