| IShadowMapRendererRenderCallback Property |
Gets or sets the method which renders the scene into the shadow map.
Namespace: DigitalRune.Graphics.RenderingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax Func<RenderContext, bool> RenderCallback { get; set; }
Property RenderCallback As Func(Of RenderContext, Boolean)
Get
Set
property Func<RenderContext^, bool>^ RenderCallback {
Func<RenderContext^, bool>^ get ();
void set (Func<RenderContext^, bool>^ value);
}
abstract RenderCallback : Func<RenderContext, bool> with get, set
Property Value
Type:
FuncRenderContext,
BooleanThe callback method that renders the scene into the shadow map.
Remarks
The render callback renders the scene for the shadow map using the camera and the
information currently set in the render context. It returns if
any objects were rendered and if no objects were rendered (= shadow
map is empty).
See Also