dreamcast/rgb.hpp
Zack Buhman 25e299feba new "example" directory
This is a reshuffling of filenames, extensions, paths, make rules,
just because I felt like it.
2023-12-12 21:50:39 +08:00

16 lines
187 B
C++

struct rgb
{
unsigned char r;
unsigned char g;
unsigned char b;
};
struct hsv
{
unsigned char h;
unsigned char s;
unsigned char v;
};
struct rgb hsv_to_rgb(struct hsv hsv);