| DelegateParameterArrayBindingTComputeParameter Property |
Gets or sets a method that computes the new values for the effect parameter.
Namespace: DigitalRune.Graphics.EffectsAssembly: 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; }
Public Property ComputeParameter As Action(Of DelegateParameterArrayBinding(Of T), RenderContext, T())
Get
Set
public:
property Action<DelegateParameterArrayBinding<T>^, RenderContext^, array<T>^>^ ComputeParameter {
Action<DelegateParameterArrayBinding<T>^, RenderContext^, array<T>^>^ get ();
void set (Action<DelegateParameterArrayBinding<T>^, RenderContext^, array<T>^>^ value);
}
member ComputeParameter : Action<DelegateParameterArrayBinding<'T>, RenderContext, 'T[]> with get, set
Property Value
Type:
ActionDelegateParameterArrayBindingT,
RenderContext,
TThe method that computes the new values for the effect parameter.
Exceptions 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