aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/IWindow.cs
blob: 3d5130c29db00a99592672ae9c8656a6e8933c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Ryujinx.Graphics.GAL
{
    public interface IWindow
    {
        void Present();

        void QueueTexture(ITexture texture, ImageCrop crop, object context);

        void RegisterTextureReleaseCallback(TextureReleaseCallback callback);

        void SetSize(int width, int height);
    }
}