(gl: WebGLRenderingContext)
| 387 | class FakeTextureLoader extends WebGLTextureLoader<FakeTexture> { |
| 388 | textures: Array<WebGLTexture>; |
| 389 | constructor(gl: WebGLRenderingContext) { |
| 390 | super(gl); |
| 391 | this.textures = []; |
| 392 | } |
| 393 | dispose() { |
| 394 | const { gl } = this; |
| 395 | this.textures.forEach(t => gl.deleteTexture(t)); |
nothing calls this directly
no outgoing calls
no test coverage detected