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.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/Ryujinx.Graphics.GAL/IWindow.cs b/Ryujinx.Graphics.GAL/IWindow.cs
deleted file mode 100644
index 1221d685..00000000
--- a/Ryujinx.Graphics.GAL/IWindow.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-
-namespace Ryujinx.Graphics.GAL
-{
- public interface IWindow
- {
- void Present(ITexture texture, ImageCrop crop, Action swapBuffersCallback);
-
- void SetSize(int width, int height);
-
- void ChangeVSyncMode(bool vsyncEnabled);
-
- void SetAntiAliasing(AntiAliasing antialiasing);
- void SetScalingFilter(ScalingFilter type);
- void SetScalingFilterLevel(float level);
- }
-}