mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
3eab3f5eb7
Emergency-revert for 14.5.1 release, too many problems
16 lines
243 B
GLSL
16 lines
243 B
GLSL
#version 330
|
|
|
|
uniform sampler2D textureSampler;
|
|
|
|
uniform vec4 vertColor;
|
|
uniform float LOD;
|
|
|
|
noperspective in vec2 texCoord;
|
|
|
|
out vec4 FragClr;
|
|
void main()
|
|
{
|
|
vec4 tex = textureLod(textureSampler, texCoord, LOD);
|
|
FragClr = tex * vertColor;
|
|
}
|