]> git.lizzy.rs Git - nothing.git/blobdiff - src/color.h
(#68) Wire up boxes entity
[nothing.git] / src / color.h
index 7c1ad5d2bda9ee7301eb743a7437e1cb916169f6..1d5730426e2a7f9a6c95441d864ae6645a07e901 100644 (file)
@@ -1,13 +1,20 @@
 #ifndef COLOR_H_
 #define COLOR_H_
 
-typedef struct SDL_Color SDL_Color;
+#include <SDL2/SDL.h>
 
 typedef struct color_t {
     float r, g, b, a;
 } color_t;
 
+// TODO(#108): color constructor can be easily shadowed in many situation
 color_t color(float r, float g, float b, float a);
+color_t color256(Uint8 r, Uint8 g, Uint8 b, Uint8 a);
+color_t color_from_hexstr(const char *hexstr);
 SDL_Color color_for_sdl(color_t color);
 
+color_t color_darker(color_t color, float d);
+
+color_t color_desaturate(color_t color);
+
 #endif  // COLOR_H_