Class TextureArray

java.lang.Object
com.jme3.texture.Texture
com.jme3.texture.TextureArray
All Implemented Interfaces:
CloneableSmartAsset, Savable, Cloneable

public class TextureArray extends Texture
This class implements a Texture array warning, this feature is only supported on opengl 3.0 version. To check if a hardware supports TextureArray check : renderManager.getRenderer().getCaps().contains(Caps.TextureArray)
  • Constructor Details

    • TextureArray

      public TextureArray()
      Construct a TextureArray warning, this feature is only supported on opengl 3.0 version. To check if a hardware supports TextureArray check : renderManager.getRenderer().getCaps().contains(Caps.TextureArray)
    • TextureArray

      public TextureArray(List<Image> images)
      Construct a TextureArray from the given list of images. To check if a hardware supports TextureArray check : renderManager.getRenderer().getCaps().contains(Caps.TextureArray)
      Parameters:
      images - the images to use (not null)
  • Method Details