IWindow.cs 271 B

12345678910111213
  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. void ChangeVSyncMode(bool vsyncEnabled);
  9. }
  10. }