2018-02-04 18:08:20 -05:00
|
|
|
using System;
|
|
|
|
|
2018-02-20 15:09:23 -05:00
|
|
|
namespace Ryujinx.Graphics.Gal
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2018-02-23 16:48:27 -05:00
|
|
|
public unsafe interface IGalRenderer
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
|
|
|
void QueueAction(Action ActionMthd);
|
|
|
|
void RunActions();
|
|
|
|
|
2018-02-23 16:48:27 -05:00
|
|
|
void InitializeFrameBuffer();
|
2018-03-12 00:04:52 -04:00
|
|
|
void ResetFrameBuffer();
|
2018-02-04 18:08:20 -05:00
|
|
|
void Render();
|
2018-02-23 16:48:27 -05:00
|
|
|
void SetWindowSize(int Width, int Height);
|
2018-02-28 21:37:40 -05:00
|
|
|
void SetFrameBuffer(
|
|
|
|
byte* Fb,
|
|
|
|
int Width,
|
|
|
|
int Height,
|
|
|
|
float ScaleX,
|
|
|
|
float ScaleY,
|
|
|
|
float OffsX,
|
|
|
|
float OffsY,
|
|
|
|
float Rotate);
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
void SendVertexBuffer(int Index, byte[] Buffer, int Stride, GalVertexAttrib[] Attribs);
|
2018-02-28 21:37:40 -05:00
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
void SendR8G8B8A8Texture(int Index, byte[] Buffer, int Width, int Height);
|
2018-02-28 21:37:40 -05:00
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
void BindTexture(int Index);
|
|
|
|
}
|
|
|
|
}
|