public enum FrameBufferStatus extends Enum<FrameBufferStatus> implements IEnumWithValue
| Enum Constant and Description |
|---|
FRAMEBUFFER_COMPLETE
The frame buffer is ready to display.
|
FRAMEBUFFER_INCOMPLETE_ATTACHMENT
The attachment types are mismatched or not all framebuffer attachment points are framebuffer
attachment complete.
|
FRAMEBUFFER_INCOMPLETE_DIMENSIONS
Height and width of the attachment are not the same.
|
FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
There is no attachment.
|
FRAMEBUFFER_INCOMPLETE_MULTISAMPLE
The values of
RenderBufferParameterType.RENDERBUFFER_SAMPLES are different among
attached render buffers, or are non-zero if the attached images are a mix of render buffers
and textures. |
FRAMEBUFFER_UNSUPPORTED
The format of the attachment is not supported or if depth and stencil attachments are not the
same render buffer.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static FrameBufferStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameBufferStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOffromValue, transformForClientpublic static final FrameBufferStatus FRAMEBUFFER_COMPLETE
public static final FrameBufferStatus FRAMEBUFFER_INCOMPLETE_ATTACHMENT
public static final FrameBufferStatus FRAMEBUFFER_INCOMPLETE_DIMENSIONS
public static final FrameBufferStatus FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
public static final FrameBufferStatus FRAMEBUFFER_INCOMPLETE_MULTISAMPLE
RenderBufferParameterType.RENDERBUFFER_SAMPLES are different among
attached render buffers, or are non-zero if the attached images are a mix of render buffers
and textures.public static final FrameBufferStatus FRAMEBUFFER_UNSUPPORTED
public static FrameBufferStatus[] values()
for (FrameBufferStatus c : FrameBufferStatus.values()) System.out.println(c);
public static FrameBufferStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int value()
value in interface IEnumWithValueCopyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.