Click or drag to resize
SoTextureWrapType Enumeration

Texture wrap type.

Namespace: OIV.Inventor.Nodes
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 9.9.13.0 (9.9.13.0)
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.

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.

To use this option, you must be using OpenGL 1.3 or higher, or your board must support the OpenGL GL_ARB_texture_border_clamp extension. Otherwise, GL_CLAMP is used.

NOTE: enumeration value 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.

To use this option, you must be using OpenGL 1.2 or higher, or your board must support the OpenGL GL_EXT_texture_edge_clamp or GL_SGIS_texture_edge_clamp extension. Otherwise, GL_CLAMP is used.

NOTE: enumeration value 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.

To use this option, you must be using OpenGL 1.4 or higher, or your board must support the OpenGL GL_EXT_texture_mirrored_repeat extension. Otherwise, GL_CLAMP is used.

NOTE: enumeration value available since Open Inventor 5.0

Remarks