Searched defs:Cubemap (Results 1 - 1 of 1) sorted by relevance
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/ |
H A D | Cubemap.java | 38 /** Wraps a standard OpenGL ES Cubemap. Must be disposed when it is no longer used.
40 public class Cubemap extends GLTexture {
class in inherits:GLTexture 42 final static Map<Application, Array<Cubemap>> managedCubemaps = new HashMap<Application, Array<Cubemap>>();
44 /** Enum to identify each side of a Cubemap */
93 /** Construct an Cubemap based on the given CubemapData. */
94 public Cubemap (CubemapData data) {
method in class:Cubemap 100 /** Construct a Cubemap with the specified texture files for the sides, does not generate mipmaps. */
101 public Cubemap (FileHandle positiveX, FileHandle negativeX, FileHandle positiveY, FileHandle negativeY, FileHandle positiveZ,
method in class:Cubemap 106 /** Construct a Cubemap wit 107 public Cubemap (FileHandle positiveX, FileHandle negativeX, FileHandle positiveY, FileHandle negativeY, FileHandle positiveZ, method in class:Cubemap 115 public Cubemap (Pixmap positiveX, Pixmap negativeX, Pixmap positiveY, Pixmap negativeY, Pixmap positiveZ, Pixmap negativeZ) { method in class:Cubemap 120 public Cubemap (Pixmap positiveX, Pixmap negativeX, Pixmap positiveY, Pixmap negativeY, Pixmap positiveZ, Pixmap negativeZ, method in class:Cubemap 130 public Cubemap (int width, int height, int depth, Format format) { method in class:Cubemap 138 public Cubemap (TextureData positiveX, TextureData negativeX, TextureData positiveY, TextureData negativeY, method in class:Cubemap [all...] |
Completed in 69 milliseconds