dolphin/Data/Sys/Shaders/sepia.glsl

19 lines
399 B
Plaintext
Raw Normal View History

2013-03-07 16:46:55 +00:00
uniform sampler2D samp9;
2011-01-31 00:08:06 +00:00
2013-03-07 16:46:55 +00:00
out vec4 ocol0;
in vec2 uv0;
void main()
2011-01-31 00:08:06 +00:00
{
2013-03-07 16:46:55 +00:00
vec4 c0 = texture(samp9, uv0);
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;
ocol0 = vec4(red, green, blue, c0.a);
}