dolphin/Data/Sys/Shaders/grayscale2.glsl

13 lines
264 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);
// Info: http://www.oreillynet.com/cs/user/view/cs_msg/8691
float avg = (0.222 * c0.r) + (0.707 * c0.g) + (0.071 * c0.b);
ocol0 = vec4(avg, avg, avg, c0.a);
2011-01-31 00:08:06 +00:00
}