mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
14 lines
272 B
C#
14 lines
272 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public interface IWindow
|
|
{
|
|
void Present();
|
|
|
|
void QueueTexture(ITexture texture, ImageCrop crop, object context);
|
|
|
|
void RegisterTextureReleaseCallback(TextureReleaseCallback callback);
|
|
}
|
|
}
|