2024-07-21 04:57:59 -04:00
|
|
|
#ifndef GX_FORMAT_H
|
|
|
|
|
#define GX_FORMAT_H
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
|
|
#include "tempest/vector.h"
|
|
|
|
|
|
|
|
|
|
typedef enum CGxFormat__Format 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;
|
2024-07-22 20:32:06 -04:00
|
|
|
// TODO: verify this name
|
|
|
|
|
bool hwCursor; // 0x5
|
2024-07-21 04:57:59 -04:00
|
|
|
int8_t fixLag;
|
|
|
|
|
int8_t window;
|
|
|
|
|
uint32_t unk8;
|
|
|
|
|
int32_t maximize;
|
|
|
|
|
CGxFormat__Format depthFormat;
|
|
|
|
|
C2iVector size;
|
|
|
|
|
uint32_t unk1C;
|
|
|
|
|
uint32_t sampleCount;
|
|
|
|
|
float float24;
|
|
|
|
|
CGxFormat__Format colorFormat;
|
|
|
|
|
uint32_t refreshRate;
|
|
|
|
|
uint32_t vsync;
|
|
|
|
|
uint32_t unk34;
|
|
|
|
|
uint32_t unk38;
|
|
|
|
|
uint32_t unk3C;
|
|
|
|
|
uint32_t unk40;
|
|
|
|
|
uint32_t unk44;
|
|
|
|
|
uint32_t unk48;
|
|
|
|
|
uint32_t unk4C;
|
|
|
|
|
C2iVector pos;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|