public enum RenderingAPI extends java.lang.Enum<RenderingAPI>
Enum Constant and Description |
---|
ARNOLD
Arnold renderer
|
CUSTOM
Custom rendering API
|
DIRECTX
DirectX
|
MANTLE
AMD Mantle
|
MENTAL_RAY
MentalRay
|
METAL
Metal developed by Apple
|
NONE
No rendering API
|
OPENGL
OpenGL
|
OPENGLES
OpenGL ES
|
PREVIEW
PreviewColorAPI, compatible with FBX
|
RENDER_MAN
RenderMan
|
RENDER_WARE
RenderWare
|
SHADERFX
ShaderFX renderer
|
STAGE3D
Stage3D used in Adobe Flash
|
VULKAN
Vulkan
|
Modifier and Type | Method and Description |
---|---|
static RenderingAPI |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderingAPI[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingAPI NONE
public static final RenderingAPI PREVIEW
public static final RenderingAPI DIRECTX
public static final RenderingAPI OPENGL
public static final RenderingAPI OPENGLES
public static final RenderingAPI MANTLE
public static final RenderingAPI METAL
public static final RenderingAPI VULKAN
public static final RenderingAPI RENDER_MAN
public static final RenderingAPI RENDER_WARE
public static final RenderingAPI STAGE3D
public static final RenderingAPI MENTAL_RAY
public static final RenderingAPI ARNOLD
public static final RenderingAPI SHADERFX
public static final RenderingAPI CUSTOM
public static RenderingAPI[] values()
for (RenderingAPI c : RenderingAPI.values()) System.out.println(c);
public static RenderingAPI 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