(texture)
| 1654 | } |
| 1655 | |
| 1656 | _deleteFramebufferTexture(texture) { |
| 1657 | const gl = this.GL; |
| 1658 | gl.deleteTexture(texture.rawTexture().texture); |
| 1659 | this.textures.delete(texture); |
| 1660 | } |
| 1661 | |
| 1662 | deleteFramebufferTextures(framebuffer) { |
| 1663 | this._deleteFramebufferTexture(framebuffer.color) |
no test coverage detected