renderer -> renderergl1, rend2 -> renderergl2

This commit is contained in:
Tim Angus 2013-02-15 23:46:37 +00:00
parent bff574e04e
commit f6fb9eb602
120 changed files with 1277 additions and 1294 deletions

View file

@ -0,0 +1,12 @@
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;
}