public enum JCGLDepthWriting extends Enum<JCGLDepthWriting>
| Enum Constant and Description |
|---|
DEPTH_WRITE_DISABLED
Writing to the depth buffer is disabled.
|
DEPTH_WRITE_ENABLED
Writing to the depth buffer is enabled.
|
| Modifier and Type | Method and Description |
|---|---|
static JCGLDepthWriting |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCGLDepthWriting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCGLDepthWriting DEPTH_WRITE_ENABLED
public static final JCGLDepthWriting DEPTH_WRITE_DISABLED
public static JCGLDepthWriting[] values()
for (JCGLDepthWriting c : JCGLDepthWriting.values()) System.out.println(c);
public static JCGLDepthWriting 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 © 2017 <code@io7m.com> http://io7m.com