Enum AddressMode
Represents texture sampling addressing modes.
public enum AddressMode
Fields
ClampToBorder = 3Texture coordinates outside [0, 1] return a border color.
ClampToEdge = 1Texture coordinates are clamped to the edge.
MirroredRepeat = 2Texture coordinates mirror at the boundaries.
Repeat = 0Texture coordinates wrap at the boundaries (repeat).