aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Switch.cs
diff options
context:
space:
mode:
authorgdk <gab.dark.100@gmail.com>2019-10-13 03:02:07 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commit1876b346fea647e8284a66bb6d62c38801035cff (patch)
tree6eeff094298cda84d1613dc5ec0691e51d7b35f1 /Ryujinx.HLE/Switch.cs
parentf617fb542a0e3d36012d77a4b5acbde7b08902f2 (diff)
Initial work
Diffstat (limited to 'Ryujinx.HLE/Switch.cs')
-rw-r--r--Ryujinx.HLE/Switch.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/Ryujinx.HLE/Switch.cs b/Ryujinx.HLE/Switch.cs
index d1ca3d1f..e5a5f273 100644
--- a/Ryujinx.HLE/Switch.cs
+++ b/Ryujinx.HLE/Switch.cs
@@ -1,8 +1,8 @@
using LibHac.FsSystem;
using Ryujinx.Audio;
using Ryujinx.Configuration;
-using Ryujinx.Graphics;
-using Ryujinx.Graphics.Gal;
+using Ryujinx.Graphics.GAL;
+using Ryujinx.Graphics.Gpu;
using Ryujinx.HLE.FileSystem;
using Ryujinx.HLE.HOS;
using Ryujinx.HLE.HOS.Services;
@@ -19,7 +19,7 @@ namespace Ryujinx.HLE
internal DeviceMemory Memory { get; private set; }
- internal NvGpu Gpu { get; private set; }
+ internal GpuContext Gpu { get; private set; }
public VirtualFileSystem FileSystem { get; private set; }
@@ -35,7 +35,7 @@ namespace Ryujinx.HLE
public event EventHandler Finish;
- public Switch(IGalRenderer renderer, IAalOutput audioOut)
+ public Switch(IRenderer renderer, IAalOutput audioOut)
{
if (renderer == null)
{
@@ -51,7 +51,7 @@ namespace Ryujinx.HLE
Memory = new DeviceMemory();
- Gpu = new NvGpu(renderer);
+ Gpu = new GpuContext(renderer);
FileSystem = new VirtualFileSystem();
@@ -114,12 +114,12 @@ namespace Ryujinx.HLE
public bool WaitFifo()
{
- return Gpu.Pusher.WaitForCommands();
+ return Gpu.DmaPusher.WaitForCommands();
}
public void ProcessFrame()
{
- Gpu.Pusher.DispatchCalls();
+ Gpu.DmaPusher.DispatchCalls();
}
internal void Unload()