I want to project a texture on to a wall or any object. I modified this tutorial's shaders as follows based on this Cg projective texture mapping tutorial (ctrl-f "9.3") but I get a blank, white canvas. I'm new to shaders and not quite sure how to debug this(no JS errors), any tips?
Vertex shader:
uniform mat4 u_modelViewProjMatrix;
uniform mat4 u_normalMatrix;
uniform vec3 lightDir;
attribute vec3 vNormal;
attribute vec4 vTexCoord;
attribute vec4 vPosition;
varying float v_Dot;
varying vec2 v_texCoord;
void main()
{
gl_Position = u_modelViewProjMatrix * vPosition;
v_texCoord = vTexCoord.st * vPosition;
vec4 transNormal = u_normalMatrix * vec4(vNormal, 1);
v_Dot = max(dot(transNormal.xyz, lightDir), 0.0);
}
Fragment shader:
uniform sampler2D sampler2d;
varying float v_Dot;
varying vec2 v_texCoord;
void main()
{
vec4 color = texture2DProj(sampler2d,v_texCoord);
gl_FragColor = vec4(color.xyz * v_Dot, color.a);
}