Enum Class BufferGroupDef
- All Implemented Interfaces:
Serializable
,Comparable<BufferGroupDef>
,Constable
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.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA group of buffers used for ray-casting distance measurement.A group of buffers used for visual effect of face-to-face comparison scene. -
Method Summary
Modifier and TypeMethodDescriptionstatic BufferGroupDef
Returns the enum constant of this class with the specified name.static BufferGroupDef[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RAY_CASTING_DISTANCE
A group of buffers used for ray-casting distance measurement. For the list of buffers, seeRayCastingDistBufferGroup
. -
VISUAL_EFFECTS
A group of buffers used for visual effect of face-to-face comparison scene. For the list of buffers, seeVisualEffectsBufferGroup
.
-
-
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
-