raylib/examples/resources/shaders/grayscale.fs

20 lines
420 B
Forth
Raw Normal View History

2015-09-02 02:06:55 +03:00
#version 330
in vec2 fragTexCoord;
out vec4 fragColor;
uniform sampler2D texture0;
2016-01-13 19:13:28 +03:00
uniform vec4 fragTintColor;
2015-09-02 02:06:55 +03:00
// NOTE: Add here your custom variables
void main()
{
2016-01-13 19:13:28 +03:00
vec4 base = texture2D(texture0, fragTexCoord)*fragTintColor;
2015-09-02 02:06:55 +03:00
// Convert to grayscale using NTSC conversion weights
float gray = dot(base.rgb, vec3(0.299, 0.587, 0.114));
2016-01-13 19:13:28 +03:00
fragColor = vec4(gray, gray, gray, fragTintColor.a);
}