Enum Class GLFramebufferAttachmentParameterName
java.lang.Object
java.lang.Enum<GLFramebufferAttachmentParameterName>
dev.pfaff.glass.opengl.enums.GLFramebufferAttachmentParameterName
- All Implemented Interfaces:
GLEnum
,Serializable
,Comparable<GLFramebufferAttachmentParameterName>
,Constable
public enum GLFramebufferAttachmentParameterName
extends Enum<GLFramebufferAttachmentParameterName>
implements GLEnum
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionfromGLEnum
(int glEnum) Returns the enum constant corresponding to the provided raw value.int
glEnum()
Returns the enum constant of this class with the specified name.static GLFramebufferAttachmentParameterName[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING
-
FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE
-
FRAMEBUFFER_ATTACHMENT_RED_SIZE
-
FRAMEBUFFER_ATTACHMENT_GREEN_SIZE
-
FRAMEBUFFER_ATTACHMENT_BLUE_SIZE
-
FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE
-
FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE
-
FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE
-
FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE
-
FRAMEBUFFER_ATTACHMENT_OBJECT_NAME
-
FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL
-
FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE
public static final GLFramebufferAttachmentParameterName FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE -
FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT
public static final GLFramebufferAttachmentParameterName FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT -
FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT
-
FRAMEBUFFER_ATTACHMENT_LAYERED
-
FRAMEBUFFER_ATTACHMENT_TEXTURE_SCALE_IMG
-
FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR
public static final GLFramebufferAttachmentParameterName FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR -
FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR
public static final GLFramebufferAttachmentParameterName FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR
-
-
Field Details
-
VALUES
-
-
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
-
glEnum
-
fromGLEnum
Returns the enum constant corresponding to the provided raw value.- Throws:
IllegalArgumentException
- if the provided raw value does not exist in this enum group.
-