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