(input: any)
| 395 | this.textures.forEach(t => gl.deleteTexture(t)); |
| 396 | } |
| 397 | canLoad(input: any) { |
| 398 | return input instanceof FakeTexture; |
| 399 | } |
| 400 | get(ft: FakeTexture) { |
| 401 | const array = ft.getPixels(); |
| 402 | if (array) { |
nothing calls this directly
no outgoing calls
no test coverage detected