1void main()
2{
3	float4 c0 = Sample();
4	float avg = (c0.r + c0.g + c0.b) / 3.0;
5	SetOutput(float4(avg, avg, avg, c0.a));
6}
7