Fixed vertex array out of bounds

This commit is contained in:
Robert 2020-09-28 21:04:20 +02:00
parent 9f7f5127a0
commit 8b44c519f7

View file

@ -152,7 +152,7 @@ function drawScene()
gl.enableVertexAttribArray(color);
gl.viewport(0,0, gl.canvas.width, gl.canvas.height);
gl.drawArrays(gl.POINTS, 0, vertices.length / 3);
gl.drawArrays(gl.POINTS, 0, vertices.length / 6);
}
var then = 0;