0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 15:41:40 +00:00
ryujinx-fork/Ryujinx.Graphics/Gal/IGalRenderer.cs

23 lines
413 B
C#
Raw Normal View History

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