Uses of Interface
crystalspace.jbind.interfaces.iengine.texture.iTextureWrapper

Packages that use iTextureWrapper
crystalspace.jbind.impl.csgfx.shadervar   
crystalspace.jbind.impl.engine.engine   
crystalspace.jbind.impl.engine.region   
crystalspace.jbind.impl.engine.texture   
crystalspace.jbind.impl.map   
crystalspace.jbind.impl.map.ldrctxt   
crystalspace.jbind.interfaces.iengine.engine   
crystalspace.jbind.interfaces.iengine.region   
crystalspace.jbind.interfaces.iengine.texture   
crystalspace.jbind.interfaces.imap   
crystalspace.jbind.interfaces.imap.ldrctxt   
 

Uses of iTextureWrapper in crystalspace.jbind.impl.csgfx.shadervar
 

Methods in crystalspace.jbind.impl.csgfx.shadervar with parameters of type iTextureWrapper
 boolean csShaderVariable.getValue(iTextureWrapper value)
          Retrieve a texture wrapper.
 boolean csShaderVariable.setValue(iTextureWrapper value)
          Store a texture wrapper.
 

Uses of iTextureWrapper in crystalspace.jbind.impl.engine.engine
 

Methods in crystalspace.jbind.impl.engine.engine that return iTextureWrapper
 iTextureWrapper csEngine.createBlackTexture(java.lang.String name, int w, int h, csColor iTransp, int iFlags)
           
 iTextureWrapper csEngine.createTexture(java.lang.String name, java.lang.String fileName, csColor transp, int flags)
           
 iTextureWrapper csEngine.findTexture(java.lang.String name, iRegion region)
           
 iTextureWrapper csEngine.findTexture(java.lang.String name)
           
 

Methods in crystalspace.jbind.impl.engine.engine with parameters of type iTextureWrapper
 iMaterial csEngine.createBaseMaterial(iTextureWrapper txt, int num_layers, iTextureWrapper[] wrappers, csTextureLayer[] layers)
           
 iMaterial csEngine.createBaseMaterial(iTextureWrapper txt)
           
 iMaterialWrapper csEngine.createMaterial(java.lang.String name, iTextureWrapper texture)
           
 

Uses of iTextureWrapper in crystalspace.jbind.impl.engine.region
 

Methods in crystalspace.jbind.impl.engine.region that return iTextureWrapper
 iTextureWrapper csRegion.findTexture(java.lang.String iName)
           
 

Uses of iTextureWrapper in crystalspace.jbind.impl.engine.texture
 

Classes in crystalspace.jbind.impl.engine.texture that implement iTextureWrapper
 class csTextureWrapper
           
 

Methods in crystalspace.jbind.impl.engine.texture that return iTextureWrapper
 iTextureWrapper csTextureWrapper.Clone()
           
 iTextureWrapper csTextureList.findByName(java.lang.String Name)
           
 iTextureWrapper csTextureList.get(int n)
           
 iTextureWrapper csTextureList.newTexture(iTextureHandle ith)
           
 iTextureWrapper csTextureList.newTexture(iImage image)
           
 

Methods in crystalspace.jbind.impl.engine.texture with parameters of type iTextureWrapper
 void csTextureCallback.useTexture(iTextureWrapper wrap)
           
 int csTextureList.add(iTextureWrapper obj)
           
 int csTextureList.find(iTextureWrapper obj)
           
 boolean csTextureList.remove(iTextureWrapper obj)
           
 

Uses of iTextureWrapper in crystalspace.jbind.impl.map
 

Methods in crystalspace.jbind.impl.map that return iTextureWrapper
 iTextureWrapper csLoader.loadTexture(java.lang.String Name, java.lang.String FileName, int Flags, iTextureManager tm, boolean reg, boolean create_material)
           
 iTextureWrapper csLoader.loadTexture(java.lang.String Name, java.lang.String FileName, int Flags, iTextureManager tm, boolean reg)
           
 iTextureWrapper csLoader.loadTexture(java.lang.String Name, java.lang.String FileName, int Flags, iTextureManager tm)
           
 iTextureWrapper csLoader.loadTexture(java.lang.String Name, java.lang.String FileName, int Flags)
           
 iTextureWrapper csLoader.loadTexture(java.lang.String Name, java.lang.String FileName)
           
 

Uses of iTextureWrapper in crystalspace.jbind.impl.map.ldrctxt
 

Methods in crystalspace.jbind.impl.map.ldrctxt that return iTextureWrapper
 iTextureWrapper csLoaderContext.findTexture(java.lang.String name)
           
 

Uses of iTextureWrapper in crystalspace.jbind.interfaces.iengine.engine
 

Methods in crystalspace.jbind.interfaces.iengine.engine that return iTextureWrapper
 iTextureWrapper iEngine.createTexture(java.lang.String name, java.lang.String fileName, csColor transp, int flags)
          Create a texture from a file.
 iTextureWrapper iEngine.createBlackTexture(java.lang.String name, int w, int h, csColor iTransp, int iFlags)
          Create a black texture.
 iTextureWrapper iEngine.findTexture(java.lang.String name)
          Find the given texture.
 iTextureWrapper iEngine.findTexture(java.lang.String name, iRegion region)
          Find the given texture.
 

Methods in crystalspace.jbind.interfaces.iengine.engine with parameters of type iTextureWrapper
 iMaterial iEngine.createBaseMaterial(iTextureWrapper txt)
          Create a base material that can be used to give to the texture manager.
 iMaterial iEngine.createBaseMaterial(iTextureWrapper txt, int num_layers, iTextureWrapper[] wrappers, csTextureLayer[] layers)
          Create a base material that can be used to give to the texture manager.
 iMaterialWrapper iEngine.createMaterial(java.lang.String name, iTextureWrapper texture)
          Register a material to be loaded during Prepare().
 

Uses of iTextureWrapper in crystalspace.jbind.interfaces.iengine.region
 

Methods in crystalspace.jbind.interfaces.iengine.region that return iTextureWrapper
 iTextureWrapper iRegion.findTexture(java.lang.String iName)
          Find a texture in this region by name.
 

Uses of iTextureWrapper in crystalspace.jbind.interfaces.iengine.texture
 

Methods in crystalspace.jbind.interfaces.iengine.texture that return iTextureWrapper
 iTextureWrapper iTextureWrapper.Clone()
          Create a clone this texture wrapper, using the same texture handle.
 iTextureWrapper iTextureList.findByName(java.lang.String Name)
          Find a texture by name.
 iTextureWrapper iTextureList.get(int n)
          Return a texture by index.
 iTextureWrapper iTextureList.newTexture(iTextureHandle ith)
          Create a engine wrapper for a pre-prepared iTextureHandle The handle will be IncRefed.
 iTextureWrapper iTextureList.newTexture(iImage image)
          Create a new texture.
 

Methods in crystalspace.jbind.interfaces.iengine.texture with parameters of type iTextureWrapper
 int iTextureList.add(iTextureWrapper obj)
          Add a texture.
 int iTextureList.find(iTextureWrapper obj)
          Find a texture and return its index.
 boolean iTextureList.remove(iTextureWrapper obj)
          Remove a texture.
 void iTextureCallback.useTexture(iTextureWrapper wrap)
          Get height.
 

Uses of iTextureWrapper in crystalspace.jbind.interfaces.imap
 

Methods in crystalspace.jbind.interfaces.imap that return iTextureWrapper
 iTextureWrapper iLoader.loadTexture(java.lang.String Name, java.lang.String FileName)
          Load a texture as with LoadTexture(); above and register it with the engine.
 iTextureWrapper iLoader.loadTexture(java.lang.String Name, java.lang.String FileName, int Flags)
          Load a texture as with LoadTexture(); above and register it with the engine.
 iTextureWrapper iLoader.loadTexture(java.lang.String Name, java.lang.String FileName, int Flags, iTextureManager tm)
          Load a texture as with LoadTexture(); above and register it with the engine.
 iTextureWrapper iLoader.loadTexture(java.lang.String Name, java.lang.String FileName, int Flags, iTextureManager tm, boolean reg)
          Load a texture as with LoadTexture(); above and register it with the engine.
 iTextureWrapper iLoader.loadTexture(java.lang.String Name, java.lang.String FileName, int Flags, iTextureManager tm, boolean reg, boolean create_material)
          Load a texture as with LoadTexture(); above and register it with the engine.
 

Uses of iTextureWrapper in crystalspace.jbind.interfaces.imap.ldrctxt
 

Methods in crystalspace.jbind.interfaces.imap.ldrctxt that return iTextureWrapper
 iTextureWrapper iLoaderContext.findTexture(java.lang.String name)
          Find a texture.