Class GPUSamplerAddressMode
GPU sampler address modes.
Inheritance
System.Object
GPUSamplerAddressMode
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public sealed class GPUSamplerAddressMode : Enum
Fields
Border
Texture coordinates outside of the valid range will return a separately set border color.
Declaration
public const GPUSamplerAddressMode Border
Field Value
GPUSamplerAddressMode
|
Clamp
Texture coordinates are clamped within the valid range.
Declaration
public const GPUSamplerAddressMode Clamp
Field Value
GPUSamplerAddressMode
|
Mirror
Texture coordinates flip every time the size of the valid range is passed.
Declaration
public const GPUSamplerAddressMode Mirror
Field Value
GPUSamplerAddressMode
|
value__
Declaration
public int value__
Field Value
System.Int32
|
Wrap
Texture coordinates wrap back to the valid range.
Declaration
public const GPUSamplerAddressMode Wrap
Field Value
GPUSamplerAddressMode
|