Enum SamplerAddressMode
- Namespace
- NeoVeldrid
- Assembly
- NeoVeldrid.dll
An addressing mode for texture coordinates.
public enum SamplerAddressMode : byte
Fields
Border = 3Texture coordinates that overflow return the predefined border color defined in BorderColor.
Clamp = 2Texture coordinates are clamped to the maximum or minimum values upon overflow.
Mirror = 1Texture coordinates are mirrored upon overflow.
Wrap = 0Texture coordinates are wrapped upon overflow.