Click or drag to resize
DigitalRuneColorCorrectionFilterLookupTextureB Property
Gets or sets a secondary, optional color lookup texture (a 3D texture).

Namespace: DigitalRune.Graphics.PostProcessing
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public Texture3D LookupTextureB { get; set; }

Property Value

Type: Texture3D
The secondary, optional color lookup texture. The default value is (no transformation).
Remarks

If this LookupTextureB is not , then the filter interpolates the color correction result of LookupTextureA and LookupTextureB. InterpolationParameter defines the interpolation weight: Set InterpolationParameter to 0 to use only LookupTextureA. Set InterpolationParameter to 1 to use only LookupTextureB. Use a value in the range ]0, 1[ to apply both lookup textures and interpolate the results.

If only one of the lookup textures is set, then this lookup texture is applied and InterpolationParameter is ignored.

LookupTextureA and LookupTextureB must have the same size.

See Also