mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-16 23:06:07 +00:00
17 lines
342 B
GLSL
17 lines
342 B
GLSL
#version 120
|
|
|
|
#extension GL_EXT_frag_depth : enable
|
|
|
|
varying vec2 fragTexCoord;
|
|
varying vec4 fragColor;
|
|
|
|
uniform sampler2D texture0;
|
|
uniform vec4 colDiffuse;
|
|
|
|
void main()
|
|
{
|
|
vec4 texelColor = texture2D(texture0, fragTexCoord);
|
|
|
|
gl_FragColor = texelColor*colDiffuse*fragColor;
|
|
gl_FragDepthEXT = 1.0 - gl_FragCoord.z;
|
|
} |