IWindow.cs 178 B

123456789
  1. namespace Ryujinx.Graphics.GAL
  2. {
  3. public interface IWindow
  4. {
  5. void Present(ITexture texture, ImageCrop crop);
  6. void SetSize(int width, int height);
  7. }
  8. }