mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-11 07:11:36 +00:00
13 lines
205 B
Text
13 lines
205 B
Text
|
uniform sampler2D u_DiffuseMap;
|
||
|
|
||
|
varying vec2 var_Tex1;
|
||
|
varying vec4 var_Color;
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec4 color = texture2D(u_DiffuseMap, var_Tex1);
|
||
|
|
||
|
gl_FragColor = color * var_Color;
|
||
|
}
|