Ryujinx/Ryujinx.Graphics/Gal/IGalRenderer.cs

29 lines
737 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using System;
namespace Ryujinx.Graphics.Gal
2018-02-05 00:08:20 +01:00
{
public unsafe interface IGalRenderer
2018-02-05 00:08:20 +01:00
{
void QueueAction(Action ActionMthd);
void RunActions();
void InitializeFrameBuffer();
2018-02-05 00:08:20 +01:00
void Render();
void SetWindowSize(int Width, int Height);
void SetFrameBuffer(
byte* Fb,
int Width,
int Height,
float ScaleX,
float ScaleY,
float OffsX,
float OffsY,
float Rotate);
2018-02-05 00:08:20 +01:00
void SendVertexBuffer(int Index, byte[] Buffer, int Stride, GalVertexAttrib[] Attribs);
2018-02-05 00:08:20 +01:00
void SendR8G8B8A8Texture(int Index, byte[] Buffer, int Width, int Height);
2018-02-05 00:08:20 +01:00
void BindTexture(int Index);
}
}