2018-02-04 15:08:20 -08:00
|
|
|
using System;
|
|
|
|
|
2018-02-20 12:09:23 -08:00
|
|
|
namespace Ryujinx.Graphics.Gal
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-06-23 17:39:25 -07:00
|
|
|
public interface IGalRenderer
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
|
|
|
void QueueAction(Action ActionMthd);
|
2018-04-13 11:12:58 -07:00
|
|
|
|
2018-02-04 15:08:20 -08:00
|
|
|
void RunActions();
|
|
|
|
|
2018-06-23 17:39:25 -07:00
|
|
|
IGalBlend Blend { get; }
|
2018-04-13 11:12:58 -07:00
|
|
|
|
2018-06-23 17:39:25 -07:00
|
|
|
IGalFrameBuffer FrameBuffer { get; }
|
2018-02-28 18:37:40 -08:00
|
|
|
|
2018-06-23 17:39:25 -07:00
|
|
|
IGalRasterizer Rasterizer { get; }
|
2018-02-28 18:37:40 -08:00
|
|
|
|
2018-06-23 17:39:25 -07:00
|
|
|
IGalShader Shader { get; }
|
2018-02-28 18:37:40 -08:00
|
|
|
|
2018-06-23 17:39:25 -07:00
|
|
|
IGalTexture Texture { get; }
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
|
|
|
}
|