From 647d0962df5b54334af965b88f784409afbf6223 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Wed, 25 Dec 2019 20:28:17 -0300 Subject: Initialize GPU physical memory accessor from KProcess, to allow homebrew that never maps anything on the GPU to work --- Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs (limited to 'Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs') diff --git a/Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs b/Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs deleted file mode 100644 index 73b3a9e1..00000000 --- a/Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; - -namespace Ryujinx.Graphics.Gpu.Memory -{ - public interface IPhysicalMemory - { - int GetPageSize(); - - Span Read(ulong address, ulong size); - - void Write(ulong address, Span data); - - (ulong, ulong)[] GetModifiedRanges(ulong address, ulong size, ResourceName name); - } -} \ No newline at end of file -- cgit v1.2.3