public enum VertexElementUsage extends java.lang.Enum<VertexElementUsage>
Enum Constant and Description |
---|
Binormal
Vertex binormal data.
|
BlendIndices
Blending indices data.
|
BlendWeight
Blending weight data.
|
Color
Vertex data contains diffuse or specular color.
|
Depth
Vertex data contains depth data.
|
Fog
Vertex data contains fog data.
|
Normal
Vertex normal data.
|
PointSize
Point size data.
|
Position
Position data.
|
Sample
Vertex data contains sampler data.
|
Tangent
Vertex tangent data.
|
TessellateFactor
Single, positive floating-point value.
|
TextureCoordinate
Texture coordinate data.
|
Modifier and Type | Method and Description |
---|---|
static VertexElementUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VertexElementUsage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VertexElementUsage Position
public static final VertexElementUsage Color
public static final VertexElementUsage TextureCoordinate
public static final VertexElementUsage Normal
public static final VertexElementUsage Binormal
public static final VertexElementUsage Tangent
public static final VertexElementUsage BlendIndices
public static final VertexElementUsage BlendWeight
public static final VertexElementUsage Depth
public static final VertexElementUsage Fog
public static final VertexElementUsage PointSize
public static final VertexElementUsage Sample
public static final VertexElementUsage TessellateFactor
public static VertexElementUsage[] values()
for (VertexElementUsage c : VertexElementUsage.values()) System.out.println(c);
public static VertexElementUsage 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 namejava.lang.NullPointerException
- if the argument is null