mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 02:26:39 +00:00
14 lines
410 B
C#
14 lines
410 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|