Click or drag to resize

TextureWrapMode Enumeration

Texture wrapping modes

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public enum WrapMode
Members
  Member nameValueDescription
Repeat10497 Repeats the texture. Causes the integer part of the texture coordinate to be ignored; the GL uses only the fractional part, thereby creating a repeating pattern.
MirroredRepeat33648 Repeats and mirrors the texture. Causes the final texture coordinate (Dst) to be set to the fractional part of the original texture coordinate (Src) if the integer part of Src is even; if the integer part of Src is odd, then Dst is set to 1 - Frac(Src), where Frac(Src) represents the fractional part of Src.
ClampToEdge33071 Clamps the texture to its edges. Causes the texture coordinate to be clamped to the size of the texture in the direction of clamping.
See Also