We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae167bc commit 130d14aCopy full SHA for 130d14a
sources/engine/Stride.Graphics/Direct3D11/GraphicsDevice.Direct3D11.cs
@@ -86,7 +86,7 @@ public unsafe partial class GraphicsDevice
86
/// <summary>
87
/// Gets the tick frquency of timestamp queries, in hertz.
88
/// </summary>
89
- public ulong TimestampFrequency { get; private set; }
+ public long TimestampFrequency { get; private set; }
90
91
92
/// Gets the current status of the Graphics Device.
@@ -152,7 +152,7 @@ public void Begin()
152
else
153
{
154
// The query is ready, we can reuse it
155
- TimestampFrequency = queryResult.Frequency;
+ TimestampFrequency = (long)queryResult.Frequency;
156
currentDisjointQuery = disjointQueries.Dequeue();
157
}
158
0 commit comments