这是我的顶点着色器:
attribute vec3 aVertexPosition;
attribute vec4 aVertexColor;
attribute float type;
uniform mat4 uMVMatrix;
uniform mat4 uPMatrix;
varying vec4 vColor;
void main(void) {
gl_Position = uPMatrix * uMVMatrix * vec4(aVertexPosition, 1.0);
vColor = aVertexColor;
if(type > 0.0) {
} else {
}
}
我想做的很简单,只需捕获一个名为的浮点值type
并将其用于逻辑操作。
问题是,当我尝试在 Javascript 中使用它时,错误来了:
shaderProgram.textureCoordAttribute = gl.getAttribLocation(shaderProgram, "type");
gl.enableVertexAttribArray(shaderProgram.textureCoordAttribute);
WebGL: INVALID_OPERATION: drawArrays: attribs not setup correctly main.js:253
WebGL: INVALID_OPERATION: drawArrays: attribs not setup correctly main.js:267
WebGL: INVALID_OPERATION: drawElements: attribs not setup correctly
的输出getAttribLocation
是有意义的,它们都等于大于0。
================= 更新 ===================
这是我的整个项目代码:
https://gist.github.com/royguo/5873503
解释:
- index.html 着色器脚本在这里。
- main.js 启动 WebGL 应用程序并绘制场景。
- shaders.js 加载着色器并绑定属性。
- buffers.js 初始化顶点和颜色缓冲区。
- utils.js 常用的 utils。