我正在使用WebGL,并在我的.html文件中编写顶点着色器,该文件与我的程序的.js文件一起。这主要涉及照明。
我收到的错误是:顶点着色器无法编译。错误日志是:错误:0:29:'构造函数':参数太多 错误:0:32:'dot':找不到匹配的重载函数
29和32对应于下面代码中的那些(见注释)
这是我的顶点着色器代码
<script id="vertex-shader" type="x-shader/x-vertex">
attribute vec4 a_Position;
attribute vec4 a_Color;
attribute vec3 a_Normal;
attribute vec2 a_Texture;
uniform mat4 u_MvpMatrix;
uniform mat3 u_NormalMatrix;
uniform vec3 uAmbientColor; // all 3 of these passed in .js
uniform vec3 uLightPosition; //
uniform vec3 uLightColor; //
varying vec4 v_Color;
varying vec2 v_Texture;
varying vec3 vLightWeighting;
void
main()
{
vec4 eyeLightPos = vec4(0.0, 200.0, 0.0, 1.0); // Line 29***
vec4 eyePosition = u_MvpMatrix * vec4(a_Position, 1.0); // vertex position in the eye space
vec3 normal = normalize(u_NormalMatrix * a_Normal);
float nDotL = max(dot(normal, eyeLightPos), 0.0); // Line 32***
v_Color = vec4(a_Color.rgb * nDotL, a_Color.a);
v_Texture = a_Texture;
////*************
vec3 eyeLightVector = normalize(eyeLightPos.xyz - eyePosition.xyz);
vec3 eyeViewVector = -normalize(eyePosition.xyz); // eye position is at (0, 0, 0) in the eye space
vec3 eyeReflectVector = -reflect(eyeLightVector, normal);
float shininess = 16.0;
float specular = pow(max(dot(eyeViewVector, eyeReflectVector),0.0), shininess);;
vLightWeighting = uAmbientColor + uLightColor * nDotL + uLightColor * specular;
}
</script>
为什么会这样?如果你想看到别的什么,请告诉我。
答案 0 :(得分:2)
你最有可能为29号错误的行标记。错误发生在下面的两行:
vec4 eyePosition = u_MvpMatrix * vec4(a_Position, 1.0);
问题是,a_Position已经是一个vec4,因此你试图调用一个不存在的vec4(vec4, float)
形式的构造函数。也许你只想传递a_Position
的前三个轴,在这种情况下代码是:
vec4 eyePosition = u_MvpMatrix * vec4(a_Position.xyz, 1.0);
第二个错误是因为您的类型不匹配。在点方法normal
是vec3但eyeLightPos
是vec4。 dot
函数仅针对同一类型的两个参数定义。