]> git.sesse.net Git - movit/blobdiff - effect.h
Properly link in multiply_effect.
[movit] / effect.h
index ecdd95a455320ed9625e170752b39967a1495c4c..9d4f247632449cbb2cccaf44000d75343b4b147c 100644 (file)
--- a/effect.h
+++ b/effect.h
@@ -38,8 +38,8 @@ struct RGBTriplet {
 };
 
 // Can alias on a float[4].
-struct RGBATriplet {
-       RGBATriplet(float r, float g, float b, float a)
+struct RGBATuple {
+       RGBATuple(float r, float g, float b, float a)
                : r(r), g(g), b(b), a(a) {}
 
        float r, g, b, a;