Click or drag to resize
DigitalRuneDelegateParameterArrayBindingTOnUpdate Method
Called when the effect parameter value needs to be updated.

Namespace: DigitalRune.Graphics.Effects
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
protected override void OnUpdate(
	RenderContext context
)

Parameters

context
Type: DigitalRune.GraphicsRenderContext
The render context.
Remarks
Notes to Inheritors: The method OnUpdate(RenderContext) calls ComputeParameter and stores the result in Value. Derived classes should either call ComputeParameter directly or call OnUpdate(RenderContext) of the base class.
See Also