]> git.sesse.net Git - movit/blobdiff - white_balance_effect.cpp
Movit can hardly be said to be in alpha stage anymore.
[movit] / white_balance_effect.cpp
index ef60e7a92174f0627703128131bf087dcba263db..0aa85da66f0159ca7bfd94e8b7ff1e132c73746a 100644 (file)
@@ -13,6 +13,8 @@
 using namespace Eigen;
 using namespace std;
 
+namespace movit {
+
 namespace {
 
 // Temperature is in Kelvin. Formula from http://en.wikipedia.org/wiki/Planckian_locus#Approximation .
@@ -148,3 +150,5 @@ void WhiteBalanceEffect::set_gl_state(GLuint glsl_program_num, const string &pre
                rgb_to_xyz_matrix;
        set_uniform_mat3(glsl_program_num, prefix, "correction_matrix", corr_matrix);
 }
+
+}  // namespace movit