Enum Class TargetApi

java.lang.Object
java.lang.Enum<TargetApi>
icyllis.arc3d.compiler.TargetApi
All Implemented Interfaces:
Serializable, Comparable<TargetApi>, Constable

public enum TargetApi extends Enum<TargetApi>
Specify a backend API for validation.
  • Enum Constant Details

    • OPENGL_3_3

      public static final TargetApi OPENGL_3_3
      Targeting OpenGL 3.3.
    • OPENGL_ES_3_0

      public static final TargetApi OPENGL_ES_3_0
      Targeting OpenGL ES 3.0.
    • OPENGL_4_3

      public static final TargetApi OPENGL_4_3
      Targeting OpenGL 4.3.
    • OPENGL_ES_3_1

      public static final TargetApi OPENGL_ES_3_1
      Targeting OpenGL ES 3.1.
    • OPENGL_4_5

      public static final TargetApi OPENGL_4_5
      Targeting OpenGL 4.5.
    • VULKAN_1_0

      public static final TargetApi VULKAN_1_0
      Targeting Vulkan 1.0 or above.
  • Method Details

    • values

      public static TargetApi[] 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

      public static TargetApi valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • isOpenGL

      public boolean isOpenGL()
    • isOpenGLES

      public boolean isOpenGLES()
    • isVulkan

      public boolean isVulkan()