aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2024-01-22 17:14:46 -0300
committerGitHub <noreply@github.com>2024-01-22 17:14:46 -0300
commitf241f88558b3fe90d76fc21123bd06b9e4c3d2da (patch)
tree7135051e6a5dc2227d87724777cb63f76453db58 /src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs
parent90455a05e6d7fe4305c997f20f76d2411197a182 (diff)
Add a separate device memory manager (#6153)
* Add a separate device memory manager * Still need this * Device writes are always tracked * Device writes are always tracked (2) * Rename more instances of gmm to mm
Diffstat (limited to 'src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs')
-rw-r--r--src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs b/src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs
index 164d15ec..a5ee1198 100644
--- a/src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs
+++ b/src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs
@@ -1,11 +1,11 @@
-using Ryujinx.Graphics.Gpu.Synchronization;
+using Ryujinx.Graphics.Device;
using System.Collections.Generic;
namespace Ryujinx.Graphics.Host1x
{
class SyncptIncrManager
{
- private readonly SynchronizationManager _syncMgr;
+ private readonly ISynchronizationManager _syncMgr;
private readonly struct SyncptIncr
{
@@ -27,7 +27,7 @@ namespace Ryujinx.Graphics.Host1x
private uint _currentId;
- public SyncptIncrManager(SynchronizationManager syncMgr)
+ public SyncptIncrManager(ISynchronizationManager syncMgr)
{
_syncMgr = syncMgr;
}