Click or drag to resize
DigitalRuneGraphicsManagerUpdate Method
Updates the graphics service and the registered graphics screens.

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public void Update(
	TimeSpan deltaTime
)

Parameters

deltaTime
Type: SystemTimeSpan
The elapsed time since the last update.
Remarks

This methods

  • updates DeltaTime,
  • increments Frame,
  • updates the graphics screens, i.e. calls Update(TimeSpan) of all graphics screens registered in the Screens collection
  • and performs other internal tasks.

This method needs to be called once per frame before calling Render(Boolean).

See Also