dolphin/Data/Sys/Shaders/chrismas.glsl

14 lines
211 B
Plaintext
Raw Normal View History

2013-03-07 16:46:55 +00:00
void main()
2011-01-31 00:08:06 +00:00
{
float4 c0 = Sample();
2014-05-21 03:45:33 +00:00
float red = 0.0;
2014-05-21 18:52:46 +00:00
float green = 0.0;
2011-01-31 00:08:06 +00:00
2013-03-07 16:46:55 +00:00
if (c0.r < 0.35 || c0.b > 0.35)
green = c0.g + (c0.b / 2.0);
2013-03-07 16:46:55 +00:00
else
red = c0.r + 0.4;
2014-05-21 03:45:33 +00:00
SetOutput(float4(red, green, 0.0, 1.0));
2013-03-07 16:46:55 +00:00
}