public static enum Texture.Filter extends java.lang.Enum<Texture.Filter>
Enum Constant and Description |
---|
LINEAR
Use the weighted average of the four texture elements that are closest to the center of the pixel being textured.
|
NEAREST
Use the value of the texture element that is nearest (in Manhattan distance) to the center of the pixel being textured.
|
Modifier and Type | Method and Description |
---|---|
static Texture.Filter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Texture.Filter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Texture.Filter NEAREST
public static final Texture.Filter LINEAR
public static Texture.Filter[] values()
for (Texture.Filter c : Texture.Filter.values()) System.out.println(c);
public static Texture.Filter valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null