public class EXTTextureStorage
extends java.lang.Object
The texture image specification commands in OpenGL allow each level to be separately specified with different sizes, formats, types and so on, and only imposes consistency checks at draw time. This adds overhead for implementations.
This extension provides a mechanism for specifying the entire structure of a texture in a single call, allowing certain consistency checks and memory allocations to be done up front. Once specified, the format and dimensions of the image array become immutable, to simplify completeness checks in the implementation.
When using this extension, it is no longer possible to supply texture data using TexImage*. Instead, data can be uploaded using TexSubImage*, or produced by other means (such as render-to-texture, mipmap generation, or rendering to a sibling EGLImage).
This extension has complicated interactions with other extensions. The goal of most of these interactions is to ensure that a texture is always mipmap complete (and cube complete for cubemap textures).
Requires GLES 2.0.
| Modifier and Type | Field and Description |
|---|---|
static int |
GL_ALPHA16F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_ALPHA32F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_ALPHA8_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_BGRA8_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_LUMINANCE_ALPHA16F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_LUMINANCE_ALPHA32F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_LUMINANCE16F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_LUMINANCE32F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_LUMINANCE8_ALPHA8_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_LUMINANCE8_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_R16F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_R32F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_R8_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RG16F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RG32F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RG8_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RGB_RAW_422_APPLE
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RGB10_A2_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RGB10_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RGB16F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RGB32F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RGBA16F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_RGBA32F_EXT
Accepted by the
internalformat parameter of TexStorage when implemented on OpenGL ES. |
static int |
GL_TEXTURE_IMMUTABLE_FORMAT_EXT
Accepted by the
value parameter of GetTexParameter{if}v. |
| Modifier and Type | Method and Description |
|---|---|
static void |
glTexStorage1DEXT(int target,
int levels,
int internalformat,
int width) |
static void |
glTexStorage2DEXT(int target,
int levels,
int internalformat,
int width,
int height) |
static void |
glTexStorage3DEXT(int target,
int levels,
int internalformat,
int width,
int height,
int depth) |
static void |
glTextureStorage1DEXT(int texture,
int target,
int levels,
int internalformat,
int width) |
static void |
glTextureStorage2DEXT(int texture,
int target,
int levels,
int internalformat,
int width,
int height) |
static void |
glTextureStorage3DEXT(int texture,
int target,
int levels,
int internalformat,
int width,
int height,
int depth) |
public static final int GL_TEXTURE_IMMUTABLE_FORMAT_EXT
value parameter of GetTexParameter{if}v.public static final int GL_ALPHA8_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_LUMINANCE8_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_LUMINANCE8_ALPHA8_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RGBA32F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RGB32F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_ALPHA32F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_LUMINANCE32F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_LUMINANCE_ALPHA32F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RGBA16F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RGB16F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_ALPHA16F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_LUMINANCE16F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_LUMINANCE_ALPHA16F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RGB10_A2_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RGB10_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_BGRA8_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_R8_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RG8_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_R32F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RG32F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_R16F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RG16F_EXT
internalformat parameter of TexStorage when implemented on OpenGL ES.public static final int GL_RGB_RAW_422_APPLE
internalformat parameter of TexStorage when implemented on OpenGL ES.public static void glTexStorage1DEXT(int target,
int levels,
int internalformat,
int width)
public static void glTexStorage2DEXT(int target,
int levels,
int internalformat,
int width,
int height)
public static void glTexStorage3DEXT(int target,
int levels,
int internalformat,
int width,
int height,
int depth)
public static void glTextureStorage1DEXT(int texture,
int target,
int levels,
int internalformat,
int width)
public static void glTextureStorage2DEXT(int texture,
int target,
int levels,
int internalformat,
int width,
int height)
public static void glTextureStorage3DEXT(int texture,
int target,
int levels,
int internalformat,
int width,
int height,
int depth)
Copyright LWJGL. All Rights Reserved. License terms.