Enum Class BufferGroupDef

java.lang.Object
java.lang.Enum<BufferGroupDef>
cz.fidentis.analyst.glsl.buffergroups.BufferGroupDef
All Implemented Interfaces:
Serializable, Comparable<BufferGroupDef>, Constable

public enum BufferGroupDef extends Enum<BufferGroupDef>
Names for predefined buffer groups used together by GLSL programs and their shaders. Implementation is provided in the impl package. Instantiation is managed by the GlslServices.registerBuffers(com.jogamp.opengl.GLContext, cz.fidentis.analyst.glsl.buffergroups.BufferGroupDef) service.
  • Enum Constant Details

    • RAY_CASTING_DISTANCE

      public static final BufferGroupDef RAY_CASTING_DISTANCE
      A group of buffers used for ray-casting distance measurement. For the list of buffers, see RayCastingDistBufferGroup.
    • VISUAL_EFFECTS

      public static final BufferGroupDef VISUAL_EFFECTS
      A group of buffers used for visual effect of face-to-face comparison scene. For the list of buffers, see VisualEffectsBufferGroup.
  • Method Details

    • values

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