I'm trying to write a simple program in WebGL and javascript to draw a simple object from .obj files. I'm using npm's webgl-obj-loader to load the objects. As the title says I keep getting Insufficient buffer size (Edge) and index buffer too small(FF). I used gl.geterror function and I'm getting 1282 error code which means INVALID_OPERATION.
window.onload = function () {
OBJ.downloadMeshes(
{
'dragon_vrip': 'models/dragon_vrip.obj',
'cube2': 'models/cube2.obj'
}, webGLStart);
}
This is the way I use to load obj files.
app.meshes = meshes;
OBJ.initMeshBuffers(gl, app.meshes.dragon_vrip);
OBJ.initMeshBuffers(gl, app.meshes.cube2);
vertArray = app.meshes.cube2.vertices.slice();
normArray = app.meshes.cube2.vertexNormals.slice();
indicesArray = app.meshes.cube2.indices.slice();
texCoord = app.meshes.cube2.textures.slice();
var myMesh=app.meshes.cube2;
var pointsBuffer = gl.createBuffer();
gl.bindBuffer(gl.ARRAY_BUFFER, pointsBuffer);
gl.bufferData(gl.ARRAY_BUFFER, vertArray, gl.STATIC_DRAW);
gl.vertexAttribPointer(0, 3, gl.FLOAT, false, 0, 0);
gl.enableVertexAttribArray(0);
var textureBuffer = gl.createBuffer();
gl.bindBuffer(gl.ARRAY_BUFFER, textureBuffer);
gl.bufferData(gl.ARRAY_BUFFER, texCoord, gl.STATIC_DRAW);
gl.vertexAttribPointer(1, 2, gl.FLOAT, false, 0, 0);
gl.enableVertexAttribArray(1);
var normalBuffer = gl.createBuffer();
gl.bindBuffer(gl.ARRAY_BUFFER, normalBuffer);
gl.bufferData(gl.ARRAY_BUFFER, normArray, gl.STATIC_DRAW);
gl.vertexAttribPointer(2, 3, gl.FLOAT, false, 0, 0);
gl.enableVertexAttribArray(2);
var indices = gl.createBuffer();
gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indices);
gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, indicesArray, gl.STATIC_DRAW);
console.log(indices.size);
Step two: Init of the buffers.
function drawFunc() {
rotateAngleX += 0.01;
rotateAngleY += 0.02;
mat4.fromXRotation(rotateXMatrix, rotateAngleX);
mat4.fromYRotation(rotateYMatrix, rotateAngleY);
mat4.multiply(modelMatrix, rotateXMatrix, rotateYMatrix);
gl.uniformMatrix4fv(modelMatrixLocation, false, modelMatrix);
gl.clear(gl.COLOR_BUFFER_BIT);
gl.drawElements(gl.TRIANGLES, indicesArray.length, gl.UNSIGNED_SHORT, 0);
requestAnimationFrame(drawFunc);
}
requestAnimationFrame(drawFunc);
And here I'm trying to draw a simple cube.
Arrays size is: vertices:72 indices:36 texCoords:48 normals:72
Considering vertices are triplets of x,y,z points the vertex buffer contains 24 points(vertex[0]=x, vertex[1]=y, vertex[2]=z, ...), and indices array doesn't contain higher number than 23, so I don't understand where the error occurs. Also is there any way to debug the buffers? I tried spector.js but didn't help much since the draw calls do nothing because of the errors.
See a complete example below:
Working code on JSFiddle