Enum Class Caps.BlendEquationSupport

java.lang.Object
java.lang.Enum<Caps.BlendEquationSupport>
icyllis.arc3d.engine.Caps.BlendEquationSupport
All Implemented Interfaces:
Serializable, Comparable<Caps.BlendEquationSupport>, Constable
Enclosing class:
Caps

public static enum Caps.BlendEquationSupport extends Enum<Caps.BlendEquationSupport>
Indicates the capabilities of the fixed function blend unit.
  • Enum Constant Details

    • BASIC

      public static final Caps.BlendEquationSupport BASIC
      Support to select the operator that combines src and dst terms.
    • ADVANCED

      public static final Caps.BlendEquationSupport ADVANCED
      Additional fixed function support for specific SVG/PDF blend modes. Requires blend barriers.
    • ADVANCED_COHERENT

      public static final Caps.BlendEquationSupport ADVANCED_COHERENT
      Advanced blend equation support that does not require blend barriers, and permits overlap.
  • Method Details

    • values

      public static Caps.BlendEquationSupport[] 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 Caps.BlendEquationSupport 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