Enum RenderResult
Outcome of a successful render-update call. This is an open domain: a value may have no named member here, so a switch over it needs a default case. Unknown values keep their raw value.
public enum RenderResult : uint
Fields
NoUpdate = 1The call produced no frame. Wait for a render-update-available event.
Rendered = 0The call rendered a frame into the render target.
SizePending = 2The map has not applied the session's current size yet. Wait for the next render-update-available event.
TargetNotReady = 3The render target had no frame to draw into. Wait for a host event that changes the render target, or back off and retry.