aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/IWindow.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/IWindow.cs')
-rw-r--r--Ryujinx.Graphics.GAL/IWindow.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.GAL/IWindow.cs b/Ryujinx.Graphics.GAL/IWindow.cs
index a0e5f196..3d5130c2 100644
--- a/Ryujinx.Graphics.GAL/IWindow.cs
+++ b/Ryujinx.Graphics.GAL/IWindow.cs
@@ -1,5 +1,3 @@
-using System;
-
namespace Ryujinx.Graphics.GAL
{
public interface IWindow
@@ -9,5 +7,7 @@ namespace Ryujinx.Graphics.GAL
void QueueTexture(ITexture texture, ImageCrop crop, object context);
void RegisterTextureReleaseCallback(TextureReleaseCallback callback);
+
+ void SetSize(int width, int height);
}
}