mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-24 04:51:25 +00:00
b1821e303d
This path was barely used and doing this compiles fewer shaders.
12 lines
206 B
GLSL
12 lines
206 B
GLSL
uniform sampler2D u_DiffuseMap;
|
|
|
|
varying vec2 var_DiffuseTex;
|
|
|
|
varying vec4 var_Color;
|
|
|
|
|
|
void main()
|
|
{
|
|
vec4 color = texture2D(u_DiffuseMap, var_DiffuseTex);
|
|
gl_FragColor = color * var_Color;
|
|
}
|