Uses of Interface
crystalspace.jbind.interfaces.igraphic.image.iImage

Packages that use iImage
crystalspace.jbind.impl.engine.texture   
crystalspace.jbind.impl.graphic.image   
crystalspace.jbind.impl.map   
crystalspace.jbind.impl.video.graph2d   
crystalspace.jbind.impl.video.txtmgr   
crystalspace.jbind.interfaces.iengine.texture   
crystalspace.jbind.interfaces.igraphic.image   
crystalspace.jbind.interfaces.imap   
crystalspace.jbind.interfaces.ivideo.graph2d   
crystalspace.jbind.interfaces.ivideo.txtmgr   
 

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

Methods in crystalspace.jbind.impl.engine.texture that return iImage
 iImage csTextureWrapper.getImageFile()
           
 

Methods in crystalspace.jbind.impl.engine.texture with parameters of type iImage
 void csTextureWrapper.setImageFile(iImage Image)
           
 iTextureWrapper csTextureList.newTexture(iImage image)
           
 

Uses of iImage in crystalspace.jbind.impl.graphic.image
 

Classes in crystalspace.jbind.impl.graphic.image that implement iImage
 class csImage
           
 

Methods in crystalspace.jbind.impl.graphic.image that return iImage
 iImage csImage.Clone()
           
 iImage csImage.crop(int x, int y, int width, int height)
           
 iImage csImage.mipMap(int step, csRGBpixel transp)
           
 iImage csImage.sharpen(csRGBpixel transp, int strength)
           
 

Uses of iImage in crystalspace.jbind.impl.map
 

Methods in crystalspace.jbind.impl.map that return iImage
 iImage csLoader.loadImage(java.lang.String Filename, int Format)
           
 iImage csLoader.loadImage(java.lang.String Filename)
           
 

Methods in crystalspace.jbind.impl.map with parameters of type iImage
 iTextureHandle csLoader.loadTexture(java.lang.String Filename, int Flags, iTextureManager tm, iImage[] image)
           
 

Uses of iImage in crystalspace.jbind.impl.video.graph2d
 

Methods in crystalspace.jbind.impl.video.graph2d that return iImage
 iImage csGraphics2D.screenShot()
           
 

Methods in crystalspace.jbind.impl.video.graph2d with parameters of type iImage
 boolean csGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor, int hotspot_x, int hotspot_y, csRGBcolor fg, csRGBcolor bg)
           
 boolean csGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor, int hotspot_x, int hotspot_y, csRGBcolor fg)
           
 boolean csGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor, int hotspot_x, int hotspot_y)
           
 boolean csGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor, int hotspot_x)
           
 boolean csGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor)
           
 

Uses of iImage in crystalspace.jbind.impl.video.txtmgr
 

Methods in crystalspace.jbind.impl.video.txtmgr that return iImage
 iImage csSuperLightmap.dump()
           
 

Methods in crystalspace.jbind.impl.video.txtmgr with parameters of type iImage
 iTextureHandle csTextureManager.registerTexture(iImage image, int flags)
           
 

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

Methods in crystalspace.jbind.interfaces.iengine.texture that return iImage
 iImage iTextureWrapper.getImageFile()
          Get the iImage.
 

Methods in crystalspace.jbind.interfaces.iengine.texture with parameters of type iImage
 void iTextureWrapper.setImageFile(iImage Image)
          Change the base iImage.
 iTextureWrapper iTextureList.newTexture(iImage image)
          Create a new texture.
 

Uses of iImage in crystalspace.jbind.interfaces.igraphic.image
 

Methods in crystalspace.jbind.interfaces.igraphic.image that return iImage
 iImage iImage.Clone()
          Create yet another image and copy this one into the new image.
 iImage iImage.crop(int x, int y, int width, int height)
          Create a new image and copy a subpart of the actual image into the new image.
 iImage iImage.mipMap(int step, csRGBpixel transp)
          Create a new iImage which is a mipmapped version of this one.
 iImage iImage.sharpen(csRGBpixel transp, int strength)
          Create a sharpened copy of the image.
 

Uses of iImage in crystalspace.jbind.interfaces.imap
 

Methods in crystalspace.jbind.interfaces.imap that return iImage
 iImage iLoader.loadImage(java.lang.String Filename)
          Load an image file.
 iImage iLoader.loadImage(java.lang.String Filename, int Format)
          Load an image file.
 

Methods in crystalspace.jbind.interfaces.imap with parameters of type iImage
 iTextureHandle iLoader.loadTexture(java.lang.String Filename, int Flags, iTextureManager tm, iImage[] image)
          Load an image as with LoadImage(); and create a texture handle from it.
 

Uses of iImage in crystalspace.jbind.interfaces.ivideo.graph2d
 

Methods in crystalspace.jbind.interfaces.ivideo.graph2d that return iImage
 iImage iGraphics2D.screenShot()
          Do a screenshot: return a new iImage object.
 

Methods in crystalspace.jbind.interfaces.ivideo.graph2d with parameters of type iImage
 boolean iGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor)
          Set mouse cursor using an image.
 boolean iGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor, int hotspot_x)
          Set mouse cursor using an image.
 boolean iGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor, int hotspot_x, int hotspot_y)
          Set mouse cursor using an image.
 boolean iGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor, int hotspot_x, int hotspot_y, csRGBcolor fg)
          Set mouse cursor using an image.
 boolean iGraphics2D.setMouseCursor(iImage image, csRGBcolor keycolor, int hotspot_x, int hotspot_y, csRGBcolor fg, csRGBcolor bg)
          Set mouse cursor using an image.
 

Uses of iImage in crystalspace.jbind.interfaces.ivideo.txtmgr
 

Methods in crystalspace.jbind.interfaces.ivideo.txtmgr that return iImage
 iImage iSuperLightmap.dump()
          Retrieve an image of the whole SLM (for debugging purposes).
 

Methods in crystalspace.jbind.interfaces.ivideo.txtmgr with parameters of type iImage
 iTextureHandle iTextureManager.registerTexture(iImage image, int flags)
          Register a texture.