public enum InternalFormat extends Enum<InternalFormat>
| Enum Constant and Description |
|---|
DEPTH_COMPONENT |
DEPTH_COMPONENT16 |
DEPTH_COMPONENT24 |
DEPTH_COMPONENT32 |
RGBA8 |
| Modifier and Type | Method and Description |
|---|---|
static InternalFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InternalFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalFormat DEPTH_COMPONENT
public static final InternalFormat DEPTH_COMPONENT16
public static final InternalFormat DEPTH_COMPONENT24
public static final InternalFormat DEPTH_COMPONENT32
public static final InternalFormat RGBA8
public static InternalFormat[] values()
for (InternalFormat c : InternalFormat.values()) System.out.println(c);
public static InternalFormat valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All rights reserved.