mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-09 11:26:32 +00:00

Shaders come in two flavours: - shaders/gl330: OpenGL 3.3+ (Windows, Linux, OSX) - shaders/gles100: OpenGL ES 2.0 (Android, RPI, HTML5)
34 lines
1001 B
GLSL
34 lines
1001 B
GLSL
#version 330
|
|
|
|
in vec2 fragTexCoord;
|
|
|
|
out vec4 fragColor;
|
|
|
|
uniform sampler2D texture0;
|
|
uniform vec4 tintColor;
|
|
|
|
// NOTE: Add here your custom variables
|
|
|
|
void main()
|
|
{
|
|
vec4 color = texture2D(texture0, fragTexCoord);
|
|
|
|
color += texture2D(texture0, fragTexCoord + 0.001);
|
|
color += texture2D(texture0, fragTexCoord + 0.003);
|
|
color += texture2D(texture0, fragTexCoord + 0.005);
|
|
color += texture2D(texture0, fragTexCoord + 0.007);
|
|
color += texture2D(texture0, fragTexCoord + 0.009);
|
|
color += texture2D(texture0, fragTexCoord + 0.011);
|
|
|
|
color += texture2D(texture0, fragTexCoord - 0.001);
|
|
color += texture2D(texture0, fragTexCoord - 0.003);
|
|
color += texture2D(texture0, fragTexCoord - 0.005);
|
|
color += texture2D(texture0, fragTexCoord - 0.007);
|
|
color += texture2D(texture0, fragTexCoord - 0.009);
|
|
color += texture2D(texture0, fragTexCoord - 0.011);
|
|
|
|
color.rgb = vec3((color.r + color.g + color.b)/3.0);
|
|
color = color/9.5;
|
|
|
|
fragColor = color;
|
|
} |