diff options
Diffstat (limited to 'Ryujinx.Graphics.GAL/ITexture.cs')
-rw-r--r-- | Ryujinx.Graphics.GAL/ITexture.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/ITexture.cs b/Ryujinx.Graphics.GAL/ITexture.cs index 96b59293..7f46806c 100644 --- a/Ryujinx.Graphics.GAL/ITexture.cs +++ b/Ryujinx.Graphics.GAL/ITexture.cs @@ -19,6 +19,7 @@ namespace Ryujinx.Graphics.GAL void SetData(ReadOnlySpan<byte> data); void SetData(ReadOnlySpan<byte> data, int layer, int level); + void SetData(ReadOnlySpan<byte> data, int layer, int level, Rectangle<int> region); void SetStorage(BufferRange buffer); void Release(); } |