Table of Contents

Enum AddressMode

Namespace
Xui.GPU.Shaders.Types
Assembly
Xui.Core.dll

Represents texture sampling addressing modes.

public enum AddressMode

Fields

ClampToBorder = 3

Texture coordinates outside [0, 1] return a border color.

ClampToEdge = 1

Texture coordinates are clamped to the edge.

MirroredRepeat = 2

Texture coordinates mirror at the boundaries.

Repeat = 0

Texture coordinates wrap at the boundaries (repeat).