Files
ss/include/egg/core/eggGraphicsFifo.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

32 lines
524 B
C++

#ifndef EGG_GRAPHICS_FIFO_H
#define EGG_GRAPHICS_FIFO_H
#include "common.h"
#include "egg/core/eggHeap.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