]> git.lizzy.rs Git - nothing.git/blobdiff - src/color.h
(#882) Make the Platform level loadable
[nothing.git] / src / color.h
index 3740b5fbcb29afac1f5ab7ea1d472a8e8894d923..8feabed9795fe3a58b2365bd927ea093aefa191d 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef COLOR_H_
 #define COLOR_H_
 
-#include <SDL2/SDL.h>
+#include <SDL.h>
 
 typedef struct Color {
     float r, g, b, a;
@@ -15,4 +15,8 @@ Color color_darker(Color color, float d);
 
 Color color_desaturate(Color color);
 
+Color color_invert(Color c);
+
+Color color_scale(Color c, Color fc);
+
 #endif  // COLOR_H_