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 MinificationFilter |
MinificationFilter.getDefault()
Get the enum constant that is considered to be the default.
|
static MinificationFilter |
MinificationFilter.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
MinificationFilter |
TextureFilter2D.getMinificationFilter()
Gets the minification filter used when the pixel being textured maps to an area less than or equal to one texel.
|
static MinificationFilter |
MinificationFilter.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MinificationFilter[] |
MinificationFilter.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.
|