2018-06-24 02:39:25 +02:00
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
|
|
{
|
2018-09-08 19:51:50 +02:00
|
|
|
public interface IGalRenderTarget
|
2018-06-24 02:39:25 +02:00
|
|
|
{
|
2018-09-18 06:30:35 +02:00
|
|
|
void BindColor(long Key, int Attachment, GalImage Image);
|
2018-06-24 02:39:25 +02:00
|
|
|
|
2018-08-20 03:25:26 +02:00
|
|
|
void UnbindColor(int Attachment);
|
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
void BindZeta(long Key, GalImage Image);
|
2018-08-20 03:25:26 +02:00
|
|
|
|
|
|
|
void UnbindZeta();
|
2018-06-24 02:39:25 +02:00
|
|
|
|
|
|
|
void Set(long Key);
|
|
|
|
|
2018-08-23 07:07:23 +02:00
|
|
|
void SetMap(int[] Map);
|
|
|
|
|
2018-07-23 16:21:05 +02:00
|
|
|
void SetTransform(bool FlipX, bool FlipY, int Top, int Left, int Right, int Bottom);
|
2018-06-24 02:39:25 +02:00
|
|
|
|
|
|
|
void SetWindowSize(int Width, int Height);
|
|
|
|
|
|
|
|
void SetViewport(int X, int Y, int Width, int Height);
|
|
|
|
|
|
|
|
void Render();
|
|
|
|
|
2018-07-19 07:30:21 +02: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-18 06:30:35 +02:00
|
|
|
void Reinterpret(long Key, GalImage NewImage);
|
2018-06-24 02:39:25 +02:00
|
|
|
}
|
|
|
|
}
|