IWindow.cs 272 B

12345678910111213
  1. using System;
  2. namespace Ryujinx.Graphics.GAL
  3. {
  4. public interface IWindow
  5. {
  6. void Present();
  7. void QueueTexture(ITexture texture, ImageCrop crop, object context);
  8. void RegisterTextureReleaseCallback(TextureReleaseCallback callback);
  9. }
  10. }