rasp-clay-starter/raylib-5.5/examples/text/resources/shaders/glsl100/alpha_discard.fs
jmug 9bdccda54b Add raylib
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2025-04-19 18:18:15 -07:00

20 lines
383 B
GLSL

#version 100
precision mediump float;
// Input vertex attributes (from vertex shader)
varying vec2 fragTexCoord;
varying vec4 fragColor;
// Input uniform values
uniform sampler2D texture0;
uniform vec4 colDiffuse;
void main()
{
vec4 texelColor = texture2D(texture0, fragTexCoord);
if (texelColor.a == 0.0) discard;
gl_FragColor = texelColor*fragColor*colDiffuse;
}