mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-21 10:11:13 +02:00
14 lines
303 B
C#
14 lines
303 B
C#
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);
|
|
}
|
|
}
|