Struct RenderingStats
Rendering statistics snapshot.
public readonly record struct RenderingStats : IEquatable<RenderingStats>
- Implements
- Inherited Members
Constructors
RenderingStats(double, double, long, long, long)
Rendering statistics snapshot.
public RenderingStats(double EncodingTime, double RenderingTime, long FrameCount, long DrawCallCount, long TotalDrawCallCount)
Parameters
Properties
DrawCallCount
public long DrawCallCount { get; init; }
Property Value
EncodingTime
public double EncodingTime { get; init; }
Property Value
FrameCount
public long FrameCount { get; init; }
Property Value
RenderingTime
public double RenderingTime { get; init; }
Property Value
TotalDrawCallCount
public long TotalDrawCallCount { get; init; }