aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2019-12-25 20:28:17 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commit647d0962df5b54334af965b88f784409afbf6223 (patch)
tree3cd884099188341f869919c8235deecdea96be9b /Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs
parent6cf9a04d981a9e966cccb0dc90182e29aac7e270 (diff)
Initialize GPU physical memory accessor from KProcess, to allow homebrew that never maps anything on the GPU to work
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Memory/IPhysicalMemory.cs15
1 files changed, 0 insertions, 15 deletions
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<byte> Read(ulong address, ulong size);
-
- void Write(ulong address, Span<byte> data);
-
- (ulong, ulong)[] GetModifiedRanges(ulong address, ulong size, ResourceName name);
- }
-} \ No newline at end of file