Ryujinx/Ryujinx.Graphics/Gal/IGalRenderer.cs

23 lines
415 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using System;
namespace Ryujinx.Graphics.Gal
2018-02-05 00:08:20 +01:00
{
public interface IGalRenderer
2018-02-05 00:08:20 +01:00
{
void QueueAction(Action actionMthd);
2018-02-05 00:08:20 +01:00
void RunActions();
IGalConstBuffer Buffer { get; }
IGalRenderTarget RenderTarget { get; }
IGalRasterizer Rasterizer { get; }
IGalShader Shader { get; }
IGalPipeline Pipeline { get; }
IGalTexture Texture { get; }
2018-02-05 00:08:20 +01:00
}
}