Package | Description |
---|---|
agi.foundation.graphics.renderer |
Defines types that interface to the GPU that are independent of the underlying graphics API, such as OpenGL.
|
Modifier and Type | Method and Description |
---|---|
static MagnificationFilter |
MagnificationFilter.getDefault()
Get the enum constant that is considered to be the default.
|
static MagnificationFilter |
MagnificationFilter.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
MagnificationFilter |
TextureFilter2D.getMagnificationFilter()
Gets the magnification filter used when the pixel being textured maps to an area greater than one texel.
|
static MagnificationFilter |
MagnificationFilter.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MagnificationFilter[] |
MagnificationFilter.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
TextureFilter2D(MinificationFilter minificationFilter,
MagnificationFilter magnificationFilter)
Initializes a texture filter with the specified
minificationFilter and magnificationFilter . |
TextureFilter2D(MinificationFilter minificationFilter,
MagnificationFilter magnificationFilter,
TextureWrap wrapS,
TextureWrap wrapT)
Initializes a texture filter with the specified filters and texture wrap.
|