Uses of Class
com.jme3.texture.Image.Format

Packages that use Image.Format
com.jme3.asset com.jme3.asset contains the AssetManager, a utility class that is used to load assets such as textures, models, and sound effects in a jME3 application. 
com.jme3.post The com.jme3.post package provides utilities for render processing. 
com.jme3.scene.plugins.blender.textures.blending   
com.jme3.scene.plugins.blender.textures.generating   
com.jme3.scene.plugins.blender.textures.io   
com.jme3.texture   
com.jme3.texture.plugins   
jme3tools.converters   
 

Uses of Image.Format in com.jme3.asset
 

Fields in com.jme3.asset declared as Image.Format
protected  Image.Format AndroidImageInfo.format
           
 

Methods in com.jme3.asset that return Image.Format
 Image.Format AndroidImageInfo.getFormat()
           
 

Uses of Image.Format in com.jme3.post
 

Methods in com.jme3.post that return Image.Format
protected  Image.Format Filter.getDefaultPassDepthFormat()
          returns the default pass depth format
protected  Image.Format Filter.getDefaultPassTextureFormat()
          returns the default pass texture format
 

Methods in com.jme3.post with parameters of type Image.Format
 void Filter.Pass.init(Renderer renderer, int width, int height, Image.Format textureFormat, Image.Format depthBufferFormat)
          init the pass called internally
 void Filter.Pass.init(Renderer renderer, int width, int height, Image.Format textureFormat, Image.Format depthBufferFormat, int numSamples)
           
 void Filter.Pass.init(Renderer renderer, int width, int height, Image.Format textureFormat, Image.Format depthBufferFormat, int numSamples, boolean renderDepth)
          init the pass called internally
 void Filter.Pass.init(Renderer renderer, int width, int height, Image.Format textureFormat, Image.Format depthBufferFormat, int numSample, Material material)
          init the pass called internally
 

Uses of Image.Format in com.jme3.scene.plugins.blender.textures.blending
 

Methods in com.jme3.scene.plugins.blender.textures.blending with parameters of type Image.Format
static TextureBlender TextureBlenderFactory.alterTextureType(Image.Format format, TextureBlender textureBlender)
          This method changes the image format in the texture blender.
static TextureBlender TextureBlenderFactory.createTextureBlender(Image.Format format, int flag, boolean negate, int blendType, float[] materialColor, float[] color, float colfac)
          This method creates the blending class.
protected  void TextureBlenderLuminance.getTinAndAlpha(java.nio.ByteBuffer data, Image.Format imageFormat, boolean neg, float[] result)
          This method return texture intensity and alpha value.
 

Uses of Image.Format in com.jme3.scene.plugins.blender.textures.generating
 

Fields in com.jme3.scene.plugins.blender.textures.generating declared as Image.Format
protected  Image.Format TextureGenerator.imageFormat
           
 

Methods in com.jme3.scene.plugins.blender.textures.generating that return Image.Format
 Image.Format TextureGenerator.getImageFormat()
           
 

Constructors in com.jme3.scene.plugins.blender.textures.generating with parameters of type Image.Format
TextureGenerator(com.jme3.scene.plugins.blender.textures.generating.NoiseGenerator noiseGenerator, Image.Format imageFormat)
           
 

Uses of Image.Format in com.jme3.scene.plugins.blender.textures.io
 

Methods in com.jme3.scene.plugins.blender.textures.io with parameters of type Image.Format
static PixelInputOutput PixelIOFactory.getPixelIO(Image.Format format)
          This method returns pixel IO object for the specified format.
 

Uses of Image.Format in com.jme3.texture
 

Fields in com.jme3.texture declared as Image.Format
protected  Image.Format Image.format
           
 

Methods in com.jme3.texture that return Image.Format
 Image.Format FrameBuffer.RenderBuffer.getFormat()
           
 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.jme3.texture with parameters of type Image.Format
 void FrameBuffer.setColorBuffer(Image.Format format)
          Enables the use of a color buffer for this FrameBuffer.
 void FrameBuffer.setDepthBuffer(Image.Format format)
          Enables the use of a depth buffer for this FrameBuffer.
 void Image.setFormat(Image.Format format)
          setFormat sets the image format for this image.
 

Constructors in com.jme3.texture 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.
Texture2D(int width, int height, Image.Format format)
          Creates a new two-dimensional texture for the purpose of offscreen rendering.
Texture2D(int width, int height, int numSamples, Image.Format format)
          Creates a new two-dimensional texture for the purpose of offscreen rendering.
Texture3D(int width, int height, int depth, Image.Format format)
          Creates a new three-dimensional texture for the purpose of offscreen rendering.
Texture3D(int width, int height, int depth, int numSamples, Image.Format format)
          Creates a new three-dimensional texture for the purpose of offscreen rendering.
TextureCubeMap(int width, int height, Image.Format format)
           
 

Uses of Image.Format in com.jme3.texture.plugins
 

Methods in com.jme3.texture.plugins with parameters of type Image.Format
static java.nio.ByteBuffer DXTFlipper.flipDXT(java.nio.ByteBuffer img, int w, int h, Image.Format format)
           
 

Uses of Image.Format in jme3tools.converters
 

Methods in jme3tools.converters with parameters of type Image.Format
static void ImageToAwt.convert(java.awt.image.BufferedImage image, Image.Format format, java.nio.ByteBuffer buf)
          Convert an AWT image to jME image.