summaryrefslogtreecommitdiff
path: root/include/egg/gfx/eggGfxEngine.h
blob: cd1a88ef51ac5ee27926cf0d9f789197c74a57b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef EGG_GFXENGINE_H
#define EGG_GFXENGINE_H

#include "common.h"
#include "rvl/GX/GXTypes.h"

namespace EGG {

class GfxEngine {
public:
struct Configuration {
    /* 0x00 */ u16 efbWidth;
    /* 0x02 */ u16 efbHeight;
    /* 0x04 */ GXColor clearColor;
    /* 0x08 */ u32 field_0x08;
    /* 0x0C */ u16 field_0x0C;
    /* 0x0E */ u16 field_0x0E;
    /* 0x10 */ u32 bufferSize;
    /* 0x14 */ u16 field_0x14;
    /* 0x16 */ u16 field_0x16;
    /* 0x18 */ u8 field_0x18;
    Configuration();
    virtual ~Configuration() {}
};

};

} // namespace EGG

#endif