drawProgram = {
return regl({
frag: `
precision mediump float;
uniform vec4 color;
varying vec3 vertex_normal;
varying vec3 vertex_tangent;
varying vec2 vertex_uv;
uniform vec3 light_dir;
uniform sampler2D tex;
uniform bool modulate;
uniform float blend_alpha;
float lum(in vec4 color) {
return 0.299 * color.r + 0.587*color.g + 0.114 * color.b;
}
void main () {
vec3 normal = normalize(vertex_normal);
vec3 tangent = normalize(vertex_tangent);
vec3 bitangent = normalize(cross(normal,tangent));
float ds = lum(texture2D(tex, vertex_uv+vec2(0.001,0.)))-lum(texture2D(tex, vertex_uv-vec2(0.001,0.)));
float dt = lum(texture2D(tex, vertex_uv+vec2(0.,0.001)))-lum(texture2D(tex, vertex_uv-vec2(0.,0.001)));
normal = normalize(normal-ds*tangent-dt*bitangent);
vec4 texColor = texture2D(tex,vertex_uv);
vec4 lightColor = vec4(clamp(color.xyz*dot(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 vec3 tangent;
attribute vec2 uv;
varying vec3 vertex_normal;
varying vec3 vertex_tangent;
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;
vertex_tangent = (modelview*vec4(tangent,0.0)).xyz;
}`,
attributes: {
position: obj.vertices,
normal: obj.normals,
tangent: obj.tangents,
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
})
}