Uses of Class
com.jme.image.Image.Format

Packages that use Image.Format
com.jme.image   
com.jme.renderer   
com.jme.renderer.jogl   
com.jme.renderer.lwjgl   
com.jme.scene.state.jogl.records   
com.jme.scene.state.lwjgl.records   
com.jme.system.dummy   
com.jme.util   
com.jme.util.lwjgl   
 

Uses of Image.Format in com.jme.image
 

Fields in com.jme.image declared as Image.Format
protected  Image.Format Image.format
           
 

Methods in com.jme.image that return Image.Format
 Image.Format Image.getFormat()
          getFormat returns the image format for this image.
static Image.Format Image.Format.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Image.Format[] Image.Format.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.jme.image with parameters of type Image.Format
static int Image.getEstimatedByteSize(Image.Format format)
           
 void Image.setFormat(Image.Format format)
          setFormat sets the image format for this image.
 

Constructors in com.jme.image with parameters of type Image.Format
Image(Image.Format format, int width, int height, java.nio.ByteBuffer data)
          Constructor instantiates a new Image object.
Image(Image.Format format, int width, int height, java.nio.ByteBuffer data, int[] mipMapSizes)
          Constructor instantiates a new Image object.
Image(Image.Format format, int width, int height, int depth, java.util.ArrayList<java.nio.ByteBuffer> data)
          Constructor instantiates a new Image object.
Image(Image.Format format, int width, int height, int depth, java.util.ArrayList<java.nio.ByteBuffer> data, int[] mipMapSizes)
          Constructor instantiates a new Image object.
 

Uses of Image.Format in com.jme.renderer
 

Methods in com.jme.renderer with parameters of type Image.Format
abstract  void Renderer.grabScreenContents(java.nio.ByteBuffer buff, Image.Format format, int x, int y, int w, int h)
          grabScreenContents reads a block of data as bytes from the current framebuffer.
 

Uses of Image.Format in com.jme.renderer.jogl
 

Methods in com.jme.renderer.jogl with parameters of type Image.Format
 void JOGLRenderer.grabScreenContents(java.nio.ByteBuffer buff, Image.Format format, int x, int y, int w, int h)
          grabScreenContents reads a block of pixels from the current framebuffer.
 

Uses of Image.Format in com.jme.renderer.lwjgl
 

Methods in com.jme.renderer.lwjgl with parameters of type Image.Format
 void LWJGLRenderer.grabScreenContents(java.nio.ByteBuffer buff, Image.Format format, int x, int y, int w, int h)
          grabScreenContents reads a block of pixels from the current framebuffer.
 

Uses of Image.Format in com.jme.scene.state.jogl.records
 

Methods in com.jme.scene.state.jogl.records with parameters of type Image.Format
static int TextureStateRecord.getGLDataFormat(Image.Format format)
           
static int TextureStateRecord.getGLPixelFormat(Image.Format format)
           
static boolean TextureStateRecord.isCompressedType(Image.Format format)
           
 

Uses of Image.Format in com.jme.scene.state.lwjgl.records
 

Methods in com.jme.scene.state.lwjgl.records with parameters of type Image.Format
static int TextureStateRecord.getGLDataFormat(Image.Format format)
           
static int TextureStateRecord.getGLPixelFormat(Image.Format format)
           
static boolean TextureStateRecord.isCompressedType(Image.Format format)
           
 

Uses of Image.Format in com.jme.system.dummy
 

Methods in com.jme.system.dummy with parameters of type Image.Format
 void DummyRenderer.grabScreenContents(java.nio.ByteBuffer buff, Image.Format format, int x, int y, int w, int h)
           
 

Uses of Image.Format in com.jme.util
 

Fields in com.jme.util declared as Image.Format
protected  Image.Format TextureKey.format
           
 

Methods in com.jme.util that return Image.Format
 Image.Format TextureKey.getFormat()
           
 

Methods in com.jme.util with parameters of type Image.Format
static Image ImageUtils.convert(Image source, Image.Format convertTo)
          This method converts between different Image formats.
static Texture TextureManager.loadTexture(java.awt.Image image, Texture.MinificationFilter minFilter, Texture.MagnificationFilter magFilter, float anisoLevel, Image.Format imageFormat, boolean flipped)
           
static Texture TextureManager.loadTexture(java.lang.String file, Texture.MinificationFilter minFilter, Texture.MagnificationFilter magFilter, Image.Format imageType, float anisoLevel, boolean flipped)
          loadTexture loads a new texture defined by the parameter string.
static Texture TextureManager.loadTexture(java.net.URL file, Texture.MinificationFilter minFilter, Texture.MagnificationFilter magFilter, Image.Format imageType, float anisoLevel, boolean flipped)
          loadTexture loads a new texture defined by the parameter url.
 void TextureKey.setFormat(Image.Format format)
           
 

Constructors in com.jme.util with parameters of type Image.Format
TextureKey(java.net.URL location, boolean flipped, Image.Format imageType)
           
 

Uses of Image.Format in com.jme.util.lwjgl
 

Methods in com.jme.util.lwjgl with parameters of type Image.Format
static void LWJGLTextureUpdater.updateTexture(Texture texture, java.nio.ByteBuffer data, int w, int h, Image.Format format)