C# Class CSharpGL.SamplerParameters

texture's settings.
Show file Open project: bitzhuwei/CSharpGL Class Usage Examples

Public Properties

Property Type Description
magFilter TextureFilter
minFilter TextureFilter
wrapR TextureWrapping
wrapS TextureWrapping
wrapT TextureWrapping

Public Methods

Method Description
SamplerParameters ( )

SamplerParameters ( TextureWrapping wrapS = TextureWrapping.ClampToEdge, TextureWrapping wrapT = TextureWrapping.ClampToEdge, TextureWrapping wrapR = TextureWrapping.ClampToEdge, TextureFilter minFilter = TextureFilter.Linear, TextureFilter magFilter = TextureFilter.Linear )

ToString ( ) : string

Method Details

SamplerParameters() public method

public SamplerParameters ( )

SamplerParameters() public method

public SamplerParameters ( TextureWrapping wrapS = TextureWrapping.ClampToEdge, TextureWrapping wrapT = TextureWrapping.ClampToEdge, TextureWrapping wrapR = TextureWrapping.ClampToEdge, TextureFilter minFilter = TextureFilter.Linear, TextureFilter magFilter = TextureFilter.Linear )
wrapS TextureWrapping
wrapT TextureWrapping
wrapR TextureWrapping
minFilter TextureFilter
magFilter TextureFilter

ToString() public method

public ToString ( ) : string
return string

Property Details

magFilter public property

public TextureFilter magFilter
return TextureFilter

minFilter public property

public TextureFilter minFilter
return TextureFilter

wrapR public property

public TextureWrapping wrapR
return TextureWrapping

wrapS public property

public TextureWrapping wrapS
return TextureWrapping

wrapT public property

public TextureWrapping wrapT
return TextureWrapping