|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Geometry.Optimization>
org.xith3d.scenegraph.Geometry.Optimization
public static enum Geometry.Optimization
| Enum Constant Summary | |
|---|---|
AUTO
The Renderer tries to find the best suitable optimization. |
|
NONE
Use this, if a Shape is highly dynamic (Appearance and Geometry). |
|
USE_DISPLAY_LISTS
Use this, if a Geometry and texture coordinates are absolutely static. |
|
USE_VBO_FOR_TEXTURE_COORDINATES
Use this, if a the texture coordinates are absolutely static. |
|
USE_VBO_FOR_VERTEX_DATA
Use this, if the vertices are absolutely static. |
|
USE_VBOS
Use this, if a Geometry and texture coordinates are absolutely static. |
|
| Method Summary | |
|---|---|
boolean |
dl()
|
boolean |
isAuto()
|
boolean |
isNone()
|
boolean |
optForTexCoords()
|
boolean |
optForVertices()
|
static Geometry.Optimization |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Geometry.Optimization[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
boolean |
vbo()
|
boolean |
vboForTexCoords()
|
boolean |
vboForVertices()
|
| 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 Geometry.Optimization NONE
public static final Geometry.Optimization AUTO
public static final Geometry.Optimization USE_DISPLAY_LISTS
public static final Geometry.Optimization USE_VBOS
public static final Geometry.Optimization USE_VBO_FOR_VERTEX_DATA
public static final Geometry.Optimization USE_VBO_FOR_TEXTURE_COORDINATES
| Method Detail |
|---|
public static Geometry.Optimization[] values()
for (Geometry.Optimization c : Geometry.Optimization.values()) System.out.println(c);
public static Geometry.Optimization 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 boolean isNone()
public final boolean isAuto()
public final boolean dl()
public final boolean vboForVertices()
public final boolean vboForTexCoords()
public final boolean vbo()
public final boolean optForVertices()
public final boolean optForTexCoords()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||