Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

debugging webgl in chrome

I have a webgl page running in chrome.

Every now and then chrome will report the following error.

[.WebGLRenderingContext]GL ERROR :GL_INVALID_OPERATION : glDrawElements: attempt to render with no buffer attached to enabled attribute 1

I've tried to debug where the error is occurring but I cannot. I can reliably cause it to occur, but when I debug the error is reported on seemingly random lines. I suspect this is because of the asynchronous nature of gpu rendering.

Is there a good way to debug this?

like image 551
Cyril MacIsaac Avatar asked Feb 11 '23 21:02

Cyril MacIsaac


2 Answers

You can use a debug wrapper to wrap the WebGL context and call gl.getError after every WebGL function.

There is an example of one available on the official WebGL Wiki.

like image 83
gman Avatar answered Feb 13 '23 09:02

gman


Per default WebGL doesn't tell you much about it, you have to query all the information you need yourself. Once you know how to do that, those errors will tell you all you need to debug it. The getter for your case would be

var attribLocation = 1;
gl.getVertexAttrib ( attribLocation, gl.VERTEX_ATTRIB_ARRAY_BUFFER_BINDING );

Which, if you query it before your draw call, will probably return null, which means you're not calling vertexAttribPointer correctly when setting up or switching buffers.

So you go to the point in your code where you set the pointers and enable the arrays and confirm that the location you just enabled with enableVertexAttribArray returns also returns null if you query the buffer at this point. Now you know if you messed up with the pointer. You know you fixed it, when the query returns the correct WebGLBuffer Object.

There are getters for all the states (WebGL is mostly about managing state), they are a bit tricky to use, but using them will greatly help you understand everything going on all the time, when you need or don't need to make calls in order to update that state and where you made mistakes.

You can look the getters and the arguments they take up in the spec

like image 24
Winchestro Avatar answered Feb 13 '23 11:02

Winchestro