Chrome DevTools - Set WebGL version

296 Views Asked by At

In Chrome DevTools, is it possible to set the version of WebGL and/or disable WebGL for testing purposes?

1

There are 1 best solutions below

0
On

While I haven't been able to find an answer to my question yet, I have found something that addresses the reason I asked it.

In Three.js, if you want to test your code with WebGL 1, you can replace your WebGLRenderer with WebGL1Renderer:

const renderer = new THREE.WebGL1Renderer({
    // ...
});