diff --git a/src/base/color.h b/src/base/color.h index 49e2157af..bdf23c61d 100644 --- a/src/base/color.h +++ b/src/base/color.h @@ -2,7 +2,6 @@ #ifndef BASE_COLOR_H #define BASE_COLOR_H -#include #include "math.h" #include "vmath.h" @@ -129,9 +128,6 @@ inline ColorHSLA color_cast(const ColorRGBA &rgb) float l = 0.5f * (Max + Min); float s = (Max != 0.0f && Min != 1.0f) ? (c/(1 - (absolute(2 * l - 1)))) : 0; - - std::cout << "H: " << h << " S: " << s << " L: " << l << " C: " << c << std::endl; - return ColorHSLA(h, s, l, rgb.a); }