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
31
32
33
34
35
36
37
38
|
#ifndef COLOR_H
#define COLOR_H
#include "ultra64/ultratypes.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;
#define RGBA8(r, g, b, a) ((((r) & 0xFF) << 24) | (((g) & 0xFF) << 16) | (((b) & 0xFF) << 8) | (((a) & 0xFF) << 0))
#endif
|