Package icyllis.arc3d.compiler
Enum Class TargetApi
- All Implemented Interfaces:
Serializable
,Comparable<TargetApi>
,Constable
Specify a backend API for validation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionTargeting OpenGL 3.3.Targeting OpenGL 4.3.Targeting OpenGL 4.5.Targeting OpenGL ES 3.0.Targeting OpenGL ES 3.1.Targeting Vulkan 1.0 or above. -
Method Summary
-
Enum Constant Details
-
OPENGL_3_3
Targeting OpenGL 3.3. -
OPENGL_ES_3_0
Targeting OpenGL ES 3.0. -
OPENGL_4_3
Targeting OpenGL 4.3. -
OPENGL_ES_3_1
Targeting OpenGL ES 3.1. -
OPENGL_4_5
Targeting OpenGL 4.5. -
VULKAN_1_0
Targeting Vulkan 1.0 or above.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isOpenGL
public boolean isOpenGL() -
isOpenGLES
public boolean isOpenGLES() -
isVulkan
public boolean isVulkan()
-