Class SoTextureUnit

All Implemented Interfaces:
SafeDisposable

public class SoTextureUnit extends SoNode
Node that specifies the current texture unit and the associated mapping method. This node specifies the current texture unit for all subsequent 2D and 3D texture nodes (for example, SoTexture2, SoTexture2Transform, SoTextureCoordinate2, SoTextureCoordinateBinding, and SoTextureCoordinateFunction).

If the graphics board supports multitexturing (OpenGL 1.5 or GL_ARB_multitexture extension), then multiple textures, each defined by a texture unit, can be applied to the same shape. The maximum number of texture units depends on the board and can be queried using getMaxTextureUnit.

Multitexturing is supported by the following shapes:

Each texture unit is defined by the following texture properties:

Limitations:

  • Multitexturing is not supported for non convex shapes (SoShapeHints.UNKNOWN_FACE_TYPE).
  • Automatic texture coordinate generation (SoTextureCoordinateFunction) is not possible for the bump mapping method.
  • When not using shaders, only units 0 to 3 can be used.
  • When using shaders, texture unit properties (listed above) can be defined for units 0 to 7. When shaders are used, it is also possible to use SoVertexShaderParameter to specify texture coordinates to be used by the shader(s). SoVertexShaderParameter parameter sets are limited to 32 on OpenGL3 hardware.

File format/default:

TextureUnit {

    unit 0
}

Action behavior:

SoGLRenderAction, SoCallbackAction
Sets the current texture unit and the associated mapping method. Sets: SoTextureUnitElement

SoBumpMappingProperty, SoTexture2, SoTexture2Transform, SoTextureCoordinate2, SoTextureCoordinateBinding, SoTextureCoordinateFunction.

  • Field Details

    • unit

      public final SoSFUInt32 unit
      Specifies the texture unit identifier. Can range from 0 to the largest texture unit, which is getMaxTextureUnit()-1. Values greater than the largest texture unit are clamped at the largest texture unit.
  • Constructor Details

    • SoTextureUnit

      public SoTextureUnit()
      Constructor.
  • Method Details

    • getMaxTextureUnit

      public static int getMaxTextureUnit()
      Calls getMaxTextureUnit((com.openinventor.inventor.misc.SoState)null).
    • getMaxTextureUnit

      public static int getMaxTextureUnit(SoState state)
      Returns the maximum number of texture units. This is the max which can be used when a shader is on state. Without shaders, only the first 4 units (0..3) can be used.