ryujinx/Ryujinx.Graphics/Gal/IGalRenderer.cs

21 lines
366 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();
IGalBlend Blend { get; }
IGalFrameBuffer FrameBuffer { get; }
IGalRasterizer Rasterizer { get; }
IGalShader Shader { get; }
IGalTexture Texture { get; }
2018-02-04 18:08:20 -05:00
}
}