0
0
Fork 0
mirror of https://github.com/UberGames/ioef.git synced 2025-01-03 16:30:48 +00:00
ioef/code/renderergl2/glsl/dlight_fp.glsl
2013-02-15 23:46:37 +00:00

12 lines
193 B
GLSL

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;
}