TextureAddressModeΒΆ

enum TextureAddressMode : System.Enum, System.IComparable, System.IFormattable, System.IConvertible

Defines modes for addressing texels using texture coordinates that are outside of the range of 0.0 to 1.0.

TextureAddressMode Wrap

Texels outside range will form the tile at every integer junction.

TextureAddressMode Clamp

Texels outside range will be set to color of 0.0 or 1.0 texel.

TextureAddressMode Mirror

Same as F:Microsoft.Xna.Framework.Graphics.TextureAddressMode.Wrap but tiles will also flipped at every integer junction.

TextureAddressMode Border

Texels outside range will be set to the border color.