WebGLRendererDebug.js 272 B

123456789101112131415
  1. /**
  2. * @author Alex Goldring | https://github.com/Usnul
  3. */
  4. function WebGLRendererDebug() {
  5. /**
  6. * Enables error checking and reporting when shader programs are being compiled
  7. * @type {boolean}
  8. */
  9. this.checkShaderErrors = true;
  10. }
  11. export { WebGLRendererDebug };