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