public enum JCGLDepthStrict extends Enum<JCGLDepthStrict>
| Enum Constant and Description |
|---|
DEPTH_STRICT_DISABLED
Strict checking is disabled.
|
DEPTH_STRICT_ENABLED
Strict checking is enabled; attempting to configure the state of the
depth buffer on a framebuffer without any depth attachment will result
in an exception on activation.
|
| Modifier and Type | Method and Description |
|---|---|
static JCGLDepthStrict |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCGLDepthStrict[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCGLDepthStrict DEPTH_STRICT_ENABLED
public static final JCGLDepthStrict DEPTH_STRICT_DISABLED
public static JCGLDepthStrict[] values()
for (JCGLDepthStrict c : JCGLDepthStrict.values()) System.out.println(c);
public static JCGLDepthStrict 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 nullCopyright © 2016 <code@io7m.com> http://io7m.com