2015-01-03 00:33:30 +00:00
|
|
|
// Anaglyph Red-Cyan luma grayscale shader
|
2018-12-04 19:39:56 +00:00
|
|
|
// Info: https://web.archive.org/web/20040101053504/http://www.oreillynet.com:80/cs/user/view/cs_msg/8691
|
2015-01-03 00:33:30 +00:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
float3 luma = float3(0.222, 0.707, 0.071);
|
|
|
|
float4 c0 = SampleLayer(0);
|
|
|
|
float avg0 = dot(c0.rgb, luma);
|
|
|
|
float4 c1 = SampleLayer(1);
|
|
|
|
float avg1 = dot(c1.rgb, luma);
|
|
|
|
SetOutput(float4(avg0, avg1, avg1, c0.a));
|
|
|
|
}
|