Просмотр исходного кода

InitializeCounters to Initialize

Ac_K 6 лет назад
Родитель
Сommit
021ed3f44e
3 измененных файлов с 3 добавлено и 3 удалено
  1. 1 1
      Ryujinx.Graphics.GAL/IRenderer.cs
  2. 1 1
      Ryujinx.Graphics.OpenGL/Renderer.cs
  3. 1 1
      Ryujinx/Ui/GLScreen.cs

+ 1 - 1
Ryujinx.Graphics.GAL/IRenderer.cs

@@ -24,7 +24,7 @@ namespace Ryujinx.Graphics.GAL
 
 
         ulong GetCounter(CounterType type);
         ulong GetCounter(CounterType type);
 
 
-        void InitializeCounters();
+        void Initialize();
 
 
         void ResetCounter(CounterType type);
         void ResetCounter(CounterType type);
     }
     }

+ 1 - 1
Ryujinx.Graphics.OpenGL/Renderer.cs

@@ -74,7 +74,7 @@ namespace Ryujinx.Graphics.OpenGL
             return _counters.GetCounter(type);
             return _counters.GetCounter(type);
         }
         }
 
 
-        public void InitializeCounters()
+        public void Initialize()
         {
         {
             PrintGpuInformation();
             PrintGpuInformation();
 
 

+ 1 - 1
Ryujinx/Ui/GLScreen.cs

@@ -70,7 +70,7 @@ namespace Ryujinx.Ui
         {
         {
             MakeCurrent();
             MakeCurrent();
 
 
-            _renderer.InitializeCounters();
+            _renderer.Initialize();
 
 
             Stopwatch chrono = new Stopwatch();
             Stopwatch chrono = new Stopwatch();