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