public enum JCGLTextureWrapR extends Enum<JCGLTextureWrapR>
| 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 JCGLTextureWrapR |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCGLTextureWrapR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCGLTextureWrapR TEXTURE_WRAP_CLAMP_TO_EDGE
public static final JCGLTextureWrapR TEXTURE_WRAP_REPEAT
public static final JCGLTextureWrapR TEXTURE_WRAP_REPEAT_MIRRORED
public static JCGLTextureWrapR[] values()
for (JCGLTextureWrapR c : JCGLTextureWrapR.values()) System.out.println(c);
public static JCGLTextureWrapR 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 © 2015 <code@io7m.com> http://io7m.com