diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2019-12-31 19:22:45 -0300 |
|---|---|---|
| committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
| commit | 9bfb373bdf85178ef319fa4d107ae20d0a2d4a04 (patch) | |
| tree | 809b39c2c15008ce62f78c023d6be113fedc189d /Ryujinx.Graphics.GAL | |
| parent | 59fdaa744b20f91928ee3fcaf5fabfcb7b409451 (diff) | |
Remove more unused code
Diffstat (limited to 'Ryujinx.Graphics.GAL')
| -rw-r--r-- | Ryujinx.Graphics.GAL/ITexture.cs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Ryujinx.Graphics.GAL/ITexture.cs b/Ryujinx.Graphics.GAL/ITexture.cs index 7664f89c..f5bc1b47 100644 --- a/Ryujinx.Graphics.GAL/ITexture.cs +++ b/Ryujinx.Graphics.GAL/ITexture.cs @@ -4,15 +4,11 @@ namespace Ryujinx.Graphics.GAL { public interface ITexture : IDisposable { - int Handle { get; } - void CopyTo(ITexture destination, int firstLayer, int firstLevel); void CopyTo(ITexture destination, Extents2D srcRegion, Extents2D dstRegion, bool linearFilter); ITexture CreateView(TextureCreateInfo info, int firstLayer, int firstLevel); - int GetStorageDebugId(); - byte[] GetData(); void SetData(Span<byte> data); |
