]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/color.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / core / color.h
index e376e3308bfed081d9e192dfecc100d7047874bb..999960ed7179147c8f8cefb293ee6d57720e336d 100644 (file)
@@ -23,6 +23,7 @@ struct Color
        Color(float v): r(v), g(v), b(v) { }
        Color(float r_, float g_, float b_): r(r_), g(g_), b(b_) { }
        Color(float r_, float g_, float b_, float a_): r(r_), g(g_), b(b_), a(a_) { }
+
        Color operator*(float f) const { return Color(r*f, g*f, b*f, a); }
        Color operator+(const Color &c) const { return Color(r+c.r, g+c.g, b+c.b, 1-(1-a)*(1-c.a)); }
        bool operator==(const Color &c) const { return (r==c.r && g==c.g && b==c.b && a==c.a); }