public static enum ITexture.TextureFormat extends java.lang.Enum<ITexture.TextureFormat>
Enum Constant and Description |
---|
TF_1_BGR565 |
TF_1_BGR888 |
TF_1_BGRA8888 |
TF_1_RGB565 |
TF_1_RGB888 |
TF_1_RGBA8888 |
TF_1_YUV420 |
TF_1_YUVJ422 |
TF_2_YUV420 |
TF_3_YUV420 |
TF_EXT_EOS |
TF_GL_IMG_STREAM |
TF_UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ITexture.TextureFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ITexture.TextureFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ITexture.TextureFormat TF_UNKNOWN
public static final ITexture.TextureFormat TF_1_RGB888
public static final ITexture.TextureFormat TF_1_RGBA8888
public static final ITexture.TextureFormat TF_1_RGB565
public static final ITexture.TextureFormat TF_1_BGR888
public static final ITexture.TextureFormat TF_1_BGR565
public static final ITexture.TextureFormat TF_1_BGRA8888
public static final ITexture.TextureFormat TF_1_YUV420
public static final ITexture.TextureFormat TF_1_YUVJ422
public static final ITexture.TextureFormat TF_2_YUV420
public static final ITexture.TextureFormat TF_3_YUV420
public static final ITexture.TextureFormat TF_EXT_EOS
public static final ITexture.TextureFormat TF_GL_IMG_STREAM
public static ITexture.TextureFormat[] values()
for (ITexture.TextureFormat c : ITexture.TextureFormat.values()) System.out.println(c);
public static ITexture.TextureFormat valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null