Maël Nison
Maël Nison

Reputation: 7353

WebGL verbose mode in Chrome / Chromium

I wish to start in the web development using WebGL technology, but I have a minor issue. Usually, I test my applications in Chrome. I love its console which is, as far I'm concerned, better than Firebug.

However, even though a verbose mode is available in Firefox (with webgl.verbose set to true), I haven't found such a thing for Chrome. I know that there is some ways to avoid the problem by using some libraries (I've found webgl-debug.js, but some errors throw unreadable messages).

So my question is : do you know any builtin way to enable WebGL logging in Chrome / Chromium ?

Upvotes: 1

Views: 2066

Answers (2)

Maël Nison
Maël Nison

Reputation: 7353

Here is another solution brought by latest Chrome DevTools.

Upvotes: 1

Jerome Etienne
Jerome Etienne

Reputation: 387

chrome supports "about:gpu" url. It provides basic information on webgl and a profiler.

Else you got WebGL Inspector which is a "An advanced WebGL debugging toolkit". In short this is a bit like the javascript console, but for WebGL

Upvotes: 4

Related Questions