mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
16 lines
269 B
GLSL
16 lines
269 B
GLSL
#version 330
|
|
|
|
uniform sampler2D textureSampler;
|
|
|
|
uniform vec4 VerticesColor;
|
|
|
|
noperspective in vec2 texCoord;
|
|
noperspective in vec4 vertColor;
|
|
|
|
out vec4 FragClr;
|
|
void main()
|
|
{
|
|
vec4 tex = texture(textureSampler, texCoord);
|
|
FragClr = tex * vertColor * VerticesColor;
|
|
}
|