2018-06-23 17:39:25 -07:00
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
|
|
{
|
2018-09-08 10:51:50 -07:00
|
|
|
public interface IGalRenderTarget
|
2018-06-23 17:39:25 -07:00
|
|
|
{
|
2018-09-25 15:55:30 -07:00
|
|
|
void Bind();
|
|
|
|
|
|
|
|
void BindColor(long Key, int Attachment);
|
2018-06-23 17:39:25 -07:00
|
|
|
|
2018-08-19 18:25:26 -07:00
|
|
|
void UnbindColor(int Attachment);
|
|
|
|
|
2018-09-25 15:55:30 -07:00
|
|
|
void BindZeta(long Key);
|
2018-08-19 18:25:26 -07:00
|
|
|
|
|
|
|
void UnbindZeta();
|
2018-06-23 17:39:25 -07:00
|
|
|
|
2018-09-25 15:55:30 -07:00
|
|
|
void Present(long Key);
|
2018-06-23 17:39:25 -07:00
|
|
|
|
2018-08-22 22:07:23 -07:00
|
|
|
void SetMap(int[] Map);
|
|
|
|
|
2018-07-23 07:21:05 -07:00
|
|
|
void SetTransform(bool FlipX, bool FlipY, int Top, int Left, int Right, int Bottom);
|
2018-06-23 17:39:25 -07:00
|
|
|
|
|
|
|
void SetWindowSize(int Width, int Height);
|
|
|
|
|
2018-09-25 15:55:30 -07:00
|
|
|
void SetViewport(int Attachment, int X, int Y, int Width, int Height);
|
2018-06-23 17:39:25 -07:00
|
|
|
|
|
|
|
void Render();
|
|
|
|
|
2018-07-18 22:30:21 -07:00
|
|
|
void Copy(
|
|
|
|
long SrcKey,
|
|
|
|
long DstKey,
|
|
|
|
int SrcX0,
|
|
|
|
int SrcY0,
|
|
|
|
int SrcX1,
|
|
|
|
int SrcY1,
|
|
|
|
int DstX0,
|
|
|
|
int DstY0,
|
|
|
|
int DstX1,
|
|
|
|
int DstY1);
|
|
|
|
|
2018-09-17 21:30:35 -07:00
|
|
|
void Reinterpret(long Key, GalImage NewImage);
|
2018-06-23 17:39:25 -07:00
|
|
|
}
|
|
|
|
}
|