IGalRenderer.cs 415 B

1234567891011121314151617181920212223
  1. using System;
  2. namespace Ryujinx.Graphics.Gal
  3. {
  4. public interface IGalRenderer
  5. {
  6. void QueueAction(Action actionMthd);
  7. void RunActions();
  8. IGalConstBuffer Buffer { get; }
  9. IGalRenderTarget RenderTarget { get; }
  10. IGalRasterizer Rasterizer { get; }
  11. IGalShader Shader { get; }
  12. IGalPipeline Pipeline { get; }
  13. IGalTexture Texture { get; }
  14. }
  15. }