aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Vulkan/WindowBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Vulkan/WindowBase.cs')
-rw-r--r--Ryujinx.Graphics.Vulkan/WindowBase.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Vulkan/WindowBase.cs b/Ryujinx.Graphics.Vulkan/WindowBase.cs
new file mode 100644
index 00000000..4f1f0d16
--- /dev/null
+++ b/Ryujinx.Graphics.Vulkan/WindowBase.cs
@@ -0,0 +1,14 @@
+using Ryujinx.Graphics.GAL;
+using System;
+
+namespace Ryujinx.Graphics.Vulkan
+{
+ internal abstract class WindowBase: IWindow
+ {
+ public bool ScreenCaptureRequested { get; set; }
+
+ public abstract void Dispose();
+ public abstract void Present(ITexture texture, ImageCrop crop, Action<object> swapBuffersCallback);
+ public abstract void SetSize(int width, int height);
+ }
+} \ No newline at end of file