Enum Class GLCommandOpcodesNV

java.lang.Object
java.lang.Enum<GLCommandOpcodesNV>
dev.pfaff.glass.opengl.enums.GLCommandOpcodesNV
All Implemented Interfaces:
GLEnum, Serializable, Comparable<GLCommandOpcodesNV>, Constable

public enum GLCommandOpcodesNV extends Enum<GLCommandOpcodesNV> implements GLEnum
  • Enum Constant Details

    • TERMINATE_SEQUENCE_COMMAND_NV

      public static final GLCommandOpcodesNV TERMINATE_SEQUENCE_COMMAND_NV
    • NOP_COMMAND_NV

      public static final GLCommandOpcodesNV NOP_COMMAND_NV
    • DRAW_ELEMENTS_COMMAND_NV

      public static final GLCommandOpcodesNV DRAW_ELEMENTS_COMMAND_NV
    • DRAW_ARRAYS_COMMAND_NV

      public static final GLCommandOpcodesNV DRAW_ARRAYS_COMMAND_NV
    • DRAW_ELEMENTS_STRIP_COMMAND_NV

      public static final GLCommandOpcodesNV DRAW_ELEMENTS_STRIP_COMMAND_NV
    • DRAW_ARRAYS_STRIP_COMMAND_NV

      public static final GLCommandOpcodesNV DRAW_ARRAYS_STRIP_COMMAND_NV
    • DRAW_ELEMENTS_INSTANCED_COMMAND_NV

      public static final GLCommandOpcodesNV DRAW_ELEMENTS_INSTANCED_COMMAND_NV
    • DRAW_ARRAYS_INSTANCED_COMMAND_NV

      public static final GLCommandOpcodesNV DRAW_ARRAYS_INSTANCED_COMMAND_NV
    • ELEMENT_ADDRESS_COMMAND_NV

      public static final GLCommandOpcodesNV ELEMENT_ADDRESS_COMMAND_NV
    • ATTRIBUTE_ADDRESS_COMMAND_NV

      public static final GLCommandOpcodesNV ATTRIBUTE_ADDRESS_COMMAND_NV
    • UNIFORM_ADDRESS_COMMAND_NV

      public static final GLCommandOpcodesNV UNIFORM_ADDRESS_COMMAND_NV
    • BLEND_COLOR_COMMAND_NV

      public static final GLCommandOpcodesNV BLEND_COLOR_COMMAND_NV
    • STENCIL_REF_COMMAND_NV

      public static final GLCommandOpcodesNV STENCIL_REF_COMMAND_NV
    • LINE_WIDTH_COMMAND_NV

      public static final GLCommandOpcodesNV LINE_WIDTH_COMMAND_NV
    • POLYGON_OFFSET_COMMAND_NV

      public static final GLCommandOpcodesNV POLYGON_OFFSET_COMMAND_NV
    • ALPHA_REF_COMMAND_NV

      public static final GLCommandOpcodesNV ALPHA_REF_COMMAND_NV
    • VIEWPORT_COMMAND_NV

      public static final GLCommandOpcodesNV VIEWPORT_COMMAND_NV
    • SCISSOR_COMMAND_NV

      public static final GLCommandOpcodesNV SCISSOR_COMMAND_NV
    • FRONT_FACE_COMMAND_NV

      public static final GLCommandOpcodesNV FRONT_FACE_COMMAND_NV
  • Field Details

  • Method Details

    • values

      public static GLCommandOpcodesNV[] 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 GLCommandOpcodesNV 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
    • glEnum

      public int glEnum()
      Specified by:
      glEnum in interface GLEnum
    • fromGLEnum

      public static GLCommandOpcodesNV fromGLEnum(int glEnum)
      Returns the enum constant corresponding to the provided raw value.
      Throws:
      IllegalArgumentException - if the provided raw value does not exist in this enum group.