mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -04:00
dc221b4795
* EGG: Archive, DvdFile, DvdRipper * start eggStream * FrmHeap and AssertHeap OK * progress on EggController * port in WPAD stuff * update WPAD/WUD/KPAD/SC symbols * eggController OK * bytematch more CoreController virtual funcs * eggDecomp/eggStreamDecomp Ok * eggDvdRipper OK * EGG gfx splits * Finished Splitting EGG * create egg Files * eggDecomp.h -> eggStreamDecomp.h * Revert some format changes
32 lines
524 B
C++
32 lines
524 B
C++
#ifndef EGG_GRAPHICS_FIFO_H
|
|
#define EGG_GRAPHICS_FIFO_H
|
|
|
|
#include "egg/core/eggHeap.h"
|
|
|
|
#include <common.h>
|
|
|
|
namespace EGG {
|
|
|
|
class GraphicsFifo {
|
|
public:
|
|
// vtable 0x00
|
|
/* vt 0x08 */ virtual ~GraphicsFifo();
|
|
|
|
public:
|
|
/* 0x04 */ void *mGxInitData;
|
|
/* 0x08 */ void *mBuffBase;
|
|
/* 0x0C */ u32 mBufSize;
|
|
|
|
public:
|
|
static void create(u32 size, Heap *heap);
|
|
GraphicsFifo(u32 size, Heap *heap);
|
|
|
|
public:
|
|
static GraphicsFifo *sGraphicsFifo;
|
|
static u8 sGpStatus[5];
|
|
};
|
|
|
|
} // namespace EGG
|
|
|
|
#endif
|