IWindow.cs 221 B

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