Click or drag to resize
DigitalRuneColorCorrectionFilterInterpolationParameter Property
Gets or sets the interpolation parameter for interpolating between the result of LookupTextureA and LookupTextureB.

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

Property Value

Type: Single
The interpolation parameter for interpolating between the result of LookupTextureA and LookupTextureB. The default value is 0.
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