|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MinFilter>
com.neovisionaries.android.opengl.MinFilter
public enum MinFilter
Filters for GL_TEXTURE_MIN_FILTER.
Texture.setMinFilter(MinFilter)
,
glTexParameterEnum Constant Summary | |
---|---|
LINEAR
GL_LINEAR. |
|
LINEAR_MIPMAP_LINEAR
LINEAR_MIPMAP_LINEAR. |
|
LINEAR_MIPMAP_NEAREST
LINEAR_MIPMAP_NEAREST. |
|
NEAREST
GL_NEAREST. |
|
NEAREST_MIPMAP_LINEAR
GL_NEAREST_MIPMAP_LINEAR. |
|
NEAREST_MIPMAP_NEAREST
GL_NEAREST_MIPMAP_NEAREST. |
Method Summary | |
---|---|
int |
getFilter()
Get the integer representing this min filter. |
static MinFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MinFilter[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final MinFilter NEAREST
public static final MinFilter LINEAR
public static final MinFilter NEAREST_MIPMAP_NEAREST
public static final MinFilter NEAREST_MIPMAP_LINEAR
public static final MinFilter LINEAR_MIPMAP_NEAREST
public static final MinFilter LINEAR_MIPMAP_LINEAR
Method Detail |
---|
public static MinFilter[] values()
for (MinFilter c : MinFilter.values()) System.out.println(c);
public static MinFilter valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic int getFilter()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |