SoTextureCombinerCombineFunctions Enumeration |
Texture Combiner Functions.
Namespace: OIV.Inventor.Nodes
Member name | Value | Description | |
---|---|---|---|
REPLACE | 7681 | Output fragment is source0. | |
MODULATE | 8448 | Output fragment is source0 * source1. | |
ADD | 260 | Output fragment is source0 + source1. | |
ADD_SIGNED | 34164 | Output fragment is source0 + source1 - 0.5. | |
INTERPOLATE | 34165 | Output fragment is source0 * source2 + source1 * (1 - source2) | |
SUBTRACT | 34023 | Output fragment is source0 - source1. | |
DOT3_RGB | 34478 | Output fragment R = G = B = 4*((source0r - 0.5) * (source1r -0.5) + (source0g - 0.5) * (source1g -0.5) + (source0b - 0.5) * (source1b -0.5) ) | |
DOT3_RGBA | 34479 | Output fragment R = G = B = A = 4*((source0r - 0.5) * (source1r -0.5) + (source0g - 0.5) * (source1g -0.5) + (source0b - 0.5) * (source1b -0.5) ) |