diff options
Diffstat (limited to 'Ryujinx.Graphics.GAL/IBuffer.cs')
-rw-r--r-- | Ryujinx.Graphics.GAL/IBuffer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.GAL/IBuffer.cs b/Ryujinx.Graphics.GAL/IBuffer.cs index 000efd67..43e37691 100644 --- a/Ryujinx.Graphics.GAL/IBuffer.cs +++ b/Ryujinx.Graphics.GAL/IBuffer.cs @@ -8,8 +8,8 @@ namespace Ryujinx.Graphics.GAL byte[] GetData(int offset, int size); - void SetData(Span<byte> data); + void SetData(ReadOnlySpan<byte> data); - void SetData(int offset, Span<byte> data); + void SetData(int offset, ReadOnlySpan<byte> data); } }
\ No newline at end of file |