|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<TextureBoundaryMode>
org.jagatoo.opengl.enums.TextureBoundaryMode
public enum TextureBoundaryMode
Insert type comment here.
| Enum Constant Summary | |
|---|---|
CLAMP
Clamps texture coordinates to be in the range [0,1] A constant boundary color is used for U,V values that fall outside this range. |
|
CLAMP_TO_BORDER
|
|
CLAMP_TO_EDGE
|
|
WRAP
Repeats the texture by wrapping texture coordinates that are outside the range [0,1]. |
|
| Method Summary | |
|---|---|
int |
toOpenGL()
|
static TextureBoundaryMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TextureBoundaryMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TextureBoundaryMode CLAMP
public static final TextureBoundaryMode CLAMP_TO_EDGE
public static final TextureBoundaryMode CLAMP_TO_BORDER
public static final TextureBoundaryMode WRAP
| Method Detail |
|---|
public static TextureBoundaryMode[] values()
for (TextureBoundaryMode c : TextureBoundaryMode.values()) System.out.println(c);
public static TextureBoundaryMode 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 name
java.lang.NullPointerException - if the argument is nullpublic final int toOpenGL()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||