Enum SamplerStateEnum
The default values for the sampler state.
Namespace: Evergine.Common.Graphics
Assembly: Evergine.Common.dll
Syntax
public enum SamplerStateEnum
Fields
Name | Description |
---|---|
AnisotropicClamp | Description of SamplerState using anisotropic filter and clamp address mode for UVW. |
AnisotropicMirror | SamplerState description using an anisotropic filter and mirror address mode for UVW. |
AnisotropicWrap | SamplerState description using anisotropic filtering and wrap address mode for UVW. |
Custom | Custom value. |
LinearClamp | SamplerState description using a linear filter (trilinear) and a clamp address mode for UVW. |
LinearMirror | SamplerState description using a linear filter (trilinear) and mirror address mode for UVW. |
LinearWrap | SamplerState description using a linear filter (trilinear) and a wrap address mode for UVW. |
PointClamp | SamplerState description using point filter (bilinear) and clamp address mode for UVW. |
PointMirror | SamplerState description using point filter (bilinear) and mirror address mode for UVW. |
PointWrap | SamplerState description using point filter (bilinear filtering) and wrap address mode for UVW. |