raylib/examples/text/resources/shaders/glsl100/sdf.fs

24 lines
629 B
Forth
Raw Normal View History

2019-05-17 02:17:40 +03:00
#version 100
2018-07-15 21:04:12 +03:00
// Input vertex attributes (from vertex shader)
2019-05-17 02:17:40 +03:00
varying vec2 fragTexCoord;
varying vec4 fragColor;
2018-07-15 21:04:12 +03:00
// Input uniform values
uniform sampler2D texture0;
uniform vec4 colDiffuse;
// NOTE: Add here your custom variables
const float smoothing = 1.0/16.0;
void main()
{
// Texel color fetching from texture sampler
// NOTE: Calculate alpha using signed distance field (SDF)
2019-05-17 02:17:40 +03:00
float distance = texture2D(texture0, fragTexCoord).a;
2018-07-15 21:04:12 +03:00
float alpha = smoothstep(0.5 - smoothing, 0.5 + smoothing, distance);
// Calculate final fragment color
2019-05-17 02:17:40 +03:00
gl_FragColor = vec4(fragColor.rgb, fragColor.a*alpha);
2018-07-15 21:04:12 +03:00
}