1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-15 06:06:04 +00:00
oot/include/color.h
cadmic e6bc4bd8cb
Add names to all typedef'd structs, unions, and enums (#2028)
* Add names to all typedef'd structs, unions, and enums

* wtf vs code

* Use a better regex
2024-08-12 03:07:48 -04:00

34 lines
543 B
C

#ifndef COLOR_H
#define COLOR_H
typedef struct Color_RGB8 {
u8 r, g, b;
} Color_RGB8;
typedef struct Color_RGBA8 {
u8 r, g, b, a;
} Color_RGBA8;
// only use when necessary for alignment purposes
typedef union Color_RGBA8_u32 {
struct {
u8 r, g, b, a;
};
u32 rgba;
} Color_RGBA8_u32;
typedef struct Color_RGBAf {
f32 r, g, b, a;
} Color_RGBAf;
typedef union Color_RGBA16 {
struct {
u16 r : 5;
u16 g : 5;
u16 b : 5;
u16 a : 1;
};
u16 rgba;
} Color_RGBA16;
#endif