From 9bfb373bdf85178ef319fa4d107ae20d0a2d4a04 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 31 Dec 2019 19:22:45 -0300 Subject: Remove more unused code --- Ryujinx.Graphics.GAL/ITexture.cs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Ryujinx.Graphics.GAL') 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 data); -- cgit v1.2.3