ddnet/shader/prim.frag

16 lines
296 B
GLSL

#version 330
uniform int isTextured;
uniform sampler2D textureSampler;
noperspective in vec2 texCoord;
noperspective in vec4 vertColor;
void main()
{
if(isTextured == 1) {
vec4 tex = texture2D(textureSampler, texCoord);
gl_FragColor = tex * vertColor;
}
else gl_FragColor = vertColor;
}