Add missing file

This commit is contained in:
Cuyler36
2023-02-22 03:32:06 -05:00
parent 0be91c36f7
commit dcc61e59e0
2 changed files with 413 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef U64TYPES_H
#define U64TYPES_H
#include "types.h"
typedef struct {
u32 r:8;
u32 g:8;
u32 b:8;
u32 a:8;
} rgba8888_t;
typedef union {
u32 rgba8888;
rgba8888_t c;
} rgba8888;
#endif