drawProgram = {
return regl({
frag: `
precision mediump float;
uniform vec4 color;
varying vec3 vertex_normal;
varying vec2 vertex_uv;
uniform vec3 light_dir;
uniform sampler2D tex;
uniform bool modulate;
uniform float blend_alpha;
void main () {
vec4 texColor = texture2D(tex,vertex_uv);
vec4 lightColor = vec4(clamp(color.xyz*dot(vertex_normal,light_dir),0.0,1.0),1.0);
if (modulate) gl_FragColor = texColor*lightColor;
else gl_FragColor = texColor*blend_alpha+lightColor*(1.0-blend_alpha);
}`,
vert: `
attribute vec3 position;
attribute vec3 normal;
attribute vec2 uv;
varying vec3 vertex_normal;
varying vec2 vertex_uv;
uniform mat4 modelview;
uniform mat4 projection;
uniform mat3 uvtransform;
void main () {
vec4 worldpos = modelview*vec4(position, 1.0);
vertex_uv = (uvtransform*vec3(uv.xy,1.0)).xy;
gl_Position = projection*worldpos;
vertex_normal = (modelview*vec4(normal,0.0)).xyz;
}`,
attributes: {
position: obj.vertices,
normal: obj.normals,
uv: obj.uvs
},
uniforms: {
color: [1, 1, 1, 1],
light_dir : vec3.normalize([], vec3.set ([],1,1,2)),
modelview : regl.prop('modelview'),
projection : regl.prop ('projection'),
uvtransform: regl.prop('uvtransform'),
tex : regl.texture({data : textures[conf.parameters.tex],
wrapS : conf.parameters.wrapS,
wrapT : conf.parameters.wrapT,
min: conf.parameters.min,
max: conf.parameters.max,
mipmap: 'nice',
flipY: true
}),
modulate : regl.prop('modulate'),
blend_alpha : regl.prop ('blend_alpha')
},
depth: {
enable: true,
func: '<',
mask: true,
},
elements: obj.faces
})
}