aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/IBuffer.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-05-23 06:46:09 -0300
committerGitHub <noreply@github.com>2020-05-23 11:46:09 +0200
commit5011640b3086b86b0f0b39b60fdb2aa946d4f5c8 (patch)
tree1bd60b7714886dfe282ca1e52cfa6fca97912cdf /Ryujinx.Graphics.GAL/IBuffer.cs
parentcc8dbdd3fb58a02e1c3fc3b9d0b1c35bc7b9d00f (diff)
Spanify Graphics Abstraction Layer (#1226)
* Spanify Graphics Abstraction Layer * Be explicit about BufferHandle size
Diffstat (limited to 'Ryujinx.Graphics.GAL/IBuffer.cs')
-rw-r--r--Ryujinx.Graphics.GAL/IBuffer.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/Ryujinx.Graphics.GAL/IBuffer.cs b/Ryujinx.Graphics.GAL/IBuffer.cs
deleted file mode 100644
index 43e37691..00000000
--- a/Ryujinx.Graphics.GAL/IBuffer.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-
-namespace Ryujinx.Graphics.GAL
-{
- public interface IBuffer : IDisposable
- {
- void CopyTo(IBuffer destination, int srcOffset, int dstOffset, int size);
-
- byte[] GetData(int offset, int size);
-
- void SetData(ReadOnlySpan<byte> data);
-
- void SetData(int offset, ReadOnlySpan<byte> data);
- }
-} \ No newline at end of file