public enum ShaderArgQualifier extends Enum<ShaderArgQualifier>
Enum Constant and Description |
---|
ATTRIBUTE |
CONST |
INVARIANT_VARYING |
UNIFORM |
VARYING |
Modifier and Type | Method and Description |
---|---|
static ShaderArgQualifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShaderArgQualifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShaderArgQualifier CONST
public static final ShaderArgQualifier ATTRIBUTE
public static final ShaderArgQualifier VARYING
public static final ShaderArgQualifier INVARIANT_VARYING
public static final ShaderArgQualifier UNIFORM
public static ShaderArgQualifier[] values()
for (ShaderArgQualifier c : ShaderArgQualifier.values()) System.out.println(c);
public static ShaderArgQualifier 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 © 2013 Metron, Inc.. All rights reserved.