ryujinx/Ryujinx.Graphics/Gal/IGalRenderer.cs

23 lines
413 B
C#
Raw Normal View History

2018-02-04 18:08:20 -05:00
using System;
namespace Ryujinx.Graphics.Gal
2018-02-04 18:08:20 -05:00
{
public interface IGalRenderer
2018-02-04 18:08:20 -05:00
{
void QueueAction(Action ActionMthd);
2018-02-04 18:08:20 -05:00
void RunActions();
IGalConstBuffer Buffer { get; }
IGalFrameBuffer FrameBuffer { get; }
IGalRasterizer Rasterizer { get; }
IGalShader Shader { get; }
IGalPipeline Pipeline { get; }
IGalTexture Texture { get; }
2018-02-04 18:08:20 -05:00
}
}