public enum RenderStage extends java.lang.Enum<RenderStage>
Enum Constant and Description |
---|
IDLE
Renderer is idle
|
POST_PROCESSING
Renderer is rendering post processing effects.
|
SCENE
Renderer is rendering the scene
|
SHADOW_MAP
Renderer is rendering a shadow map
|
Modifier and Type | Method and Description |
---|---|
static RenderStage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderStage IDLE
public static final RenderStage SHADOW_MAP
public static final RenderStage SCENE
public static final RenderStage POST_PROCESSING
public static RenderStage[] values()
for (RenderStage c : RenderStage.values()) System.out.println(c);
public static RenderStage 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