IGalRenderer.cs 366 B

123456789101112131415161718192021
  1. using System;
  2. namespace Ryujinx.Graphics.Gal
  3. {
  4. public interface IGalRenderer
  5. {
  6. void QueueAction(Action ActionMthd);
  7. void RunActions();
  8. IGalBlend Blend { get; }
  9. IGalFrameBuffer FrameBuffer { get; }
  10. IGalRasterizer Rasterizer { get; }
  11. IGalShader Shader { get; }
  12. IGalTexture Texture { get; }
  13. }
  14. }