]> git.sesse.net Git - movit/blobdiff - deconvolution_sharpen_effect.cpp
Split out some private utilities into effect_util.cpp, so we do not need to include...
[movit] / deconvolution_sharpen_effect.cpp
index 38cf0cf3fcbc66bf6f8b9a5e64e65972da977fab..f3998d918e310ff523600252e2f037740d31846c 100644 (file)
@@ -2,15 +2,19 @@
 // Since all of our signals are symmetrical, discrete correlation and convolution
 // is the same operation, and so we won't make a difference in notation.
 
-
-#include <math.h>
-#include <assert.h>
 #include <Eigen/Dense>
 #include <Eigen/Cholesky>
+#include <GL/glew.h>
+#include <assert.h>
+#include <math.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <algorithm>
+#include <new>
 
 #include "deconvolution_sharpen_effect.h"
+#include "effect_util.h"
 #include "util.h"
-#include "opengl.h"
 
 using namespace Eigen;