enum TextureAddressingMode
Types of texture addressing modes that determine what happens when texture coordinates are outside of the valid range.
Values
| Name | Value | Description |
|---|---|---|
TAM_WRAP |
0 |
Coordinates wrap back to the valid range. |
TAM_MIRROR |
1 |
Coordinates flip every time the size of the valid range is passed. |
TAM_CLAMP |
2 |
Coordinates are clamped within the valid range. |
TAM_BORDER |
3 |
Coordinates outside of the valid range will return a separately set border color. |