Explorar el Código

Start GPU performance counter at 0 instead of host GPU value (#4992)

* Start performance counter at 0 instead of host perf counter value

* whitespace

* init _firstTimestamp in constructer per feedback

* change comment

* punctuation

* address feedback

* revise comment
OpaqueReptile hace 2 años
padre
commit
cb4b58052f
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      src/Ryujinx.Graphics.Gpu/GpuContext.cs

+ 5 - 1
src/Ryujinx.Graphics.Gpu/GpuContext.cs

@@ -99,6 +99,7 @@ namespace Ryujinx.Graphics.Gpu
         private bool _pendingSync;
         private bool _pendingSync;
 
 
         private long _modifiedSequence;
         private long _modifiedSequence;
+        private ulong _firstTimestamp;
 
 
         /// <summary>
         /// <summary>
         /// Creates a new instance of the GPU emulation context.
         /// Creates a new instance of the GPU emulation context.
@@ -123,6 +124,8 @@ namespace Ryujinx.Graphics.Gpu
             DeferredActions = new Queue<Action>();
             DeferredActions = new Queue<Action>();
 
 
             PhysicalMemoryRegistry = new ConcurrentDictionary<ulong, PhysicalMemory>();
             PhysicalMemoryRegistry = new ConcurrentDictionary<ulong, PhysicalMemory>();
+
+            _firstTimestamp = ConvertNanosecondsToTicks((ulong)PerformanceCounter.ElapsedNanoseconds);
         }
         }
 
 
         /// <summary>
         /// <summary>
@@ -217,7 +220,8 @@ namespace Ryujinx.Graphics.Gpu
         /// <returns>The current GPU timestamp</returns>
         /// <returns>The current GPU timestamp</returns>
         public ulong GetTimestamp()
         public ulong GetTimestamp()
         {
         {
-            ulong ticks = ConvertNanosecondsToTicks((ulong)PerformanceCounter.ElapsedNanoseconds);
+            // Guest timestamp will start at 0, instead of host value. 
+            ulong ticks = ConvertNanosecondsToTicks((ulong)PerformanceCounter.ElapsedNanoseconds) - _firstTimestamp;
 
 
             if (GraphicsConfig.FastGpuTime)
             if (GraphicsConfig.FastGpuTime)
             {
             {