-1

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

Ben
  • 15,938
  • 19
  • 92
  • 138

1 Answers1

0

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({
    // ...
});

Ben
  • 15,938
  • 19
  • 92
  • 138