2018-07-19 15:02:51 -04:00
|
|
|
using System;
|
|
|
|
|
2018-06-23 20:39:25 -04:00
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
|
|
{
|
|
|
|
public interface IGalRasterizer
|
|
|
|
{
|
2018-07-09 22:01:59 -04:00
|
|
|
void LockCaches();
|
|
|
|
void UnlockCaches();
|
|
|
|
|
2018-08-10 00:09:40 -04:00
|
|
|
void ClearBuffers(
|
|
|
|
GalClearBufferFlags Flags,
|
2018-08-19 21:25:26 -04:00
|
|
|
int Attachment,
|
2018-08-10 00:09:40 -04:00
|
|
|
float Red, float Green, float Blue, float Alpha,
|
|
|
|
float Depth,
|
|
|
|
int Stencil);
|
2018-06-23 20:39:25 -04:00
|
|
|
|
|
|
|
bool IsVboCached(long Key, long DataSize);
|
|
|
|
|
|
|
|
bool IsIboCached(long Key, long DataSize);
|
|
|
|
|
2018-07-19 15:02:51 -04:00
|
|
|
void CreateVbo(long Key, int DataSize, IntPtr HostAddress);
|
2018-06-23 20:39:25 -04:00
|
|
|
|
2018-07-19 15:02:51 -04:00
|
|
|
void CreateIbo(long Key, int DataSize, IntPtr HostAddress);
|
2018-06-23 20:39:25 -04:00
|
|
|
|
2018-07-09 22:01:59 -04:00
|
|
|
void SetIndexArray(int Size, GalIndexFormat Format);
|
2018-06-23 20:39:25 -04:00
|
|
|
|
|
|
|
void DrawArrays(int First, int PrimCount, GalPrimitiveType PrimType);
|
|
|
|
|
2018-06-28 19:48:18 -04:00
|
|
|
void DrawElements(long IboKey, int First, int VertexBase, GalPrimitiveType PrimType);
|
2018-06-23 20:39:25 -04:00
|
|
|
}
|
|
|
|
}
|