Click or drag to resize

TextureFilter2D Constructor (MinificationFilter, MagnificationFilter, TextureWrap, TextureWrap)

Initializes a texture filter with the specified filters and texture wrap.

Namespace:  AGI.Foundation.Graphics.Renderer
Assembly:  AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public TextureFilter2D(
	MinificationFilter minificationFilter,
	MagnificationFilter magnificationFilter,
	TextureWrap wrapS,
	TextureWrap wrapT
)

Parameters

minificationFilter
Type: AGI.Foundation.Graphics.RendererMinificationFilter
The minification filter to use when the pixel being textured maps to an area less than or equal to one texel.
magnificationFilter
Type: AGI.Foundation.Graphics.RendererMagnificationFilter
The magnification filter to use when the pixel being textured maps to an area greater than one texel.
wrapS
Type: AGI.Foundation.Graphics.RendererTextureWrap
The texture wrap for the s direction.
wrapT
Type: AGI.Foundation.Graphics.RendererTextureWrap
The texture wrap for the t direction.
See Also