Click or drag to resize
DigitalRuneDelegateParameterArrayBindingTComputeParameter Property
Gets or sets a method that computes the new values for the effect parameter.

Namespace: DigitalRune.Graphics.Effects
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public Action<DelegateParameterArrayBinding<T>, RenderContext, T[]> ComputeParameter { get; set; }

Property Value

Type: ActionDelegateParameterArrayBindingT, RenderContext, T
The method that computes the new values for the effect parameter.
Exceptions
ExceptionCondition
ArgumentNullExceptionvalue is .
Remarks
The input parameters of this method are the DelegateParameterArrayBindingT, the render context, and the array of values. The method has to update the values in the pre-allocated array.
See Also