public enum JCGLTextureFilterMagnification extends Enum<JCGLTextureFilterMagnification>
| Enum Constant and Description |
|---|
TEXTURE_FILTER_LINEAR
Bilinear interpolation.
|
TEXTURE_FILTER_NEAREST
Nearest-neighbour interpolation.
|
| Modifier and Type | Method and Description |
|---|---|
static JCGLTextureFilterMagnification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCGLTextureFilterMagnification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCGLTextureFilterMagnification TEXTURE_FILTER_LINEAR
public static final JCGLTextureFilterMagnification TEXTURE_FILTER_NEAREST
public static JCGLTextureFilterMagnification[] values()
for (JCGLTextureFilterMagnification c : JCGLTextureFilterMagnification.values()) System.out.println(c);
public static JCGLTextureFilterMagnification 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