Click or drag to resize
SoTextureWrapType Enumeration

Texture wrap type.

Namespace: OIV.Inventor.Nodes
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public enum WrapType
Members
  Member nameValueDescription
REPEAT10497

Repeats texture outside 0-1 texture coordinate range.

CLAMP10496

Clamps texture coordinates to lie within 0-1 range.

This wrap type is deprecated in OpenGL core profile. Consider using CLAMP_TO_EDGE instead.

CLAMP_TO_BORDER33069

Clamps texture coordinates to a range coinciding with the centers of the border texels of a texture map at each mipmap level.

Note Note

Enum available since Open Inventor 5.0

CLAMP_TO_EDGE33071

Clamps texture coordinates to a range coinciding with the centers of the edge texels of a texture map at each mipmap level.

Note Note

Enum available since Open Inventor 5.0

MIRRORED_REPEAT33648

The texture image is repeated in such a way that every odd repetition is a mirror image.

Note Note

Enum available since Open Inventor 5.0

Remarks