HolographicFrameScanoutMonitor.ReadReports Method

Definition

Returns a list of HolographicFrameScanoutReport objects where each report corresponds to a single scanout to the holographic display which has occurred since the last time the method was called. Note that each HolographicFrame may be scanned out multiple times.

public:
 virtual IVector<HolographicFrameScanoutReport ^> ^ ReadReports() = ReadReports;
IVector<HolographicFrameScanoutReport> ReadReports();
public IList<HolographicFrameScanoutReport> ReadReports();
function readReports()
Public Function ReadReports () As IList(Of HolographicFrameScanoutReport)

Returns

A list of HolographicFrameScanoutReport objects.

Remarks

The maximum number of HolographicFrameScanoutReport objects that will be buffered by the system at any one time is set when the HolographicFrameScanoutMonitor is created with a call to HolographicSpace.CreateFrameScanoutMonitor. The caller is responsible for calling ReadReports method at a high enough frequency to dequeue the reports before this maximum limit is reached. If the limit is reached, the platform will discard reports until the queue is no longer full. It is recommended that ReadReports be called once every frame.

Applies to

See also