From 16d88c21fc98cd7302811e142a39d590370e182e Mon Sep 17 00:00:00 2001 From: gdk Date: Sat, 23 Nov 2019 23:24:03 -0300 Subject: Improved and simplified window texture presentation --- Ryujinx.Graphics.GAL/IWindow.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'Ryujinx.Graphics.GAL') diff --git a/Ryujinx.Graphics.GAL/IWindow.cs b/Ryujinx.Graphics.GAL/IWindow.cs index 3d5130c2..369f7b9a 100644 --- a/Ryujinx.Graphics.GAL/IWindow.cs +++ b/Ryujinx.Graphics.GAL/IWindow.cs @@ -2,11 +2,7 @@ namespace Ryujinx.Graphics.GAL { public interface IWindow { - void Present(); - - void QueueTexture(ITexture texture, ImageCrop crop, object context); - - void RegisterTextureReleaseCallback(TextureReleaseCallback callback); + void Present(ITexture texture, ImageCrop crop); void SetSize(int width, int height); } -- cgit v1.2.3