aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/IWindow.cs
blob: a0e5f196c5e3345bf2a11dc8492c22e860822e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Ryujinx.Graphics.GAL
{
    public interface IWindow
    {
        void Present();

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

        void RegisterTextureReleaseCallback(TextureReleaseCallback callback);
    }
}