mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
52 lines
1 KiB
C
52 lines
1 KiB
C
#ifndef GX_FORMAT_H
|
|
#define GX_FORMAT_H
|
|
|
|
#include "system/types.h"
|
|
|
|
#include "tempest/vector.h"
|
|
|
|
DECLARE_ENUM(CGxFormat__Format);
|
|
typedef struct CGxFormat CGxFormat;
|
|
|
|
enum CGxFormat__Format {
|
|
Fmt_Rgb565 = 0,
|
|
Fmt_ArgbX888 = 1,
|
|
Fmt_Argb8888 = 2,
|
|
Fmt_Argb2101010 = 3,
|
|
Fmt_Ds160 = 4,
|
|
Fmt_Ds24X = 5,
|
|
Fmt_Ds248 = 6,
|
|
Fmt_Ds320 = 7,
|
|
Formats_Last = 8
|
|
};
|
|
|
|
struct CGxFormat {
|
|
uint32_t unk0;
|
|
bool hwTnL;
|
|
bool hwCursor; // 0x5, UC
|
|
int8_t fixLag;
|
|
int8_t window;
|
|
bool aspect; // UC
|
|
int32_t maximize;
|
|
CGxFormat__Format depthFormat;
|
|
C2iVector size;
|
|
// set by CVGxTripleBufferCallback
|
|
uint32_t backbuffers; // buffering? buffer? framebufferCount?
|
|
uint32_t sampleCount;
|
|
float multisampleQuality; // UC, write at 00769693
|
|
CGxFormat__Format colorFormat;
|
|
uint32_t refreshRate;
|
|
uint32_t vsync;
|
|
bool stereoEnabled; // UC, 34
|
|
// something to do with fixed function?
|
|
// write at 0076AD4C
|
|
uint32_t unk38;
|
|
uint32_t unk3C;
|
|
uint32_t unk40;
|
|
uint32_t unk44;
|
|
uint32_t unk48;
|
|
uint32_t unk4C;
|
|
C2iVector pos;
|
|
};
|
|
|
|
#endif
|