mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-12 10:54:21 +01:00
11 lines
323 B
C
11 lines
323 B
C
|
class RenderBuffer
|
||
|
{
|
||
|
public:
|
||
|
static int VerticesToBeStored;
|
||
|
static int IndicesToBeStored;
|
||
|
static void ClearRenderBuffer(void);
|
||
|
static void StartStoring(int numIndices, int numVertices, RwImVertexIndex **indexStart, RwIm3DVertex **vertexStart);
|
||
|
static void StopStoring(void);
|
||
|
static void RenderStuffInBuffer(void);
|
||
|
};
|