public enum JCGLTextureWrapT extends Enum<JCGLTextureWrapT>
| Enum Constant and Description |
|---|
TEXTURE_WRAP_CLAMP_TO_EDGE
Clamp texture coordinates to the edge of the image.
|
TEXTURE_WRAP_REPEAT
Wrap texture coordinates around.
|
TEXTURE_WRAP_REPEAT_MIRRORED
Mirror texture coordinates.
|
| Modifier and Type | Method and Description |
|---|---|
static JCGLTextureWrapT |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCGLTextureWrapT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCGLTextureWrapT TEXTURE_WRAP_CLAMP_TO_EDGE
public static final JCGLTextureWrapT TEXTURE_WRAP_REPEAT
public static final JCGLTextureWrapT TEXTURE_WRAP_REPEAT_MIRRORED
public static JCGLTextureWrapT[] values()
for (JCGLTextureWrapT c : JCGLTextureWrapT.values()) System.out.println(c);
public static JCGLTextureWrapT 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 © 2017 <code@io7m.com> http://io7m.com