new PIXI.TextureManager(renderer)
| Name | Type | Description | 
|---|---|---|
| renderer | PIXI.WebGLRenderer | A reference to the current renderer | 
Members
- 
    glWebGLRenderingContext
- 
    
    The current WebGL rendering context 
- 
    rendererPIXI.WebGLRenderer
- 
    
    A reference to the current renderer 
Methods
- 
    bindTexture()
- 
    
    
    Binds a texture. 
- 
    destroy()
- 
    
    
    Destroys this manager and removes all its textures 
- 
    destroyTexture(texture, skipRemove)
- 
    
    
    Deletes the texture from WebGL Name Type Default Description texturePIXI.BaseTexture | PIXI.Texture the texture to destroy skipRemoveboolean false optional Whether to skip removing the texture from the TextureManager. 
- 
    getTexture()
- 
    
    
    Gets a texture. 
- 
    removeAll()
- 
    
    
    Deletes all the textures from WebGL 
- 
    updateTexture(texture, location){GLTexture}
- 
    
    
    Updates and/or Creates a WebGL texture for the renderer's context. Name Type Description texturePIXI.BaseTexture | PIXI.Texture the texture to update locationnumber the location the texture will be bound to. Returns:Type Description GLTexture The gl texture.