]> git.sesse.net Git - movit/blobdiff - white_balance_effect.h
Remove some unneeded conversions from ResampleEffect. Speeds up texture generation...
[movit] / white_balance_effect.h
index 342426beee9e514ae1b16debe2a6181c37d09079..2370847e966872746e0a75e967550bedd9979e45 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <epoxy/gl.h>
 #include <string>
+#include <Eigen/Core>
 
 #include "effect.h"
 
@@ -27,6 +28,8 @@ private:
        // Output color temperature (in Kelvins).
        // Choosing 6500 will lead to no color cast (ie., the neutral color becomes perfectly gray).
        float output_color_temperature;
+
+       Eigen::Matrix3d uniform_correction_matrix;
 };
 
 }  // namespace movit