]> git.sesse.net Git - movit/blobdiff - resample_effect.cpp
Run include-what-you-use over all of movit. Some hand tuning.
[movit] / resample_effect.cpp
index ec4f67edad5d628dcf0b9ab555d50cb4b747b957..264e5c10195dc65cd6bd82eca537c412bc611e7c 100644 (file)
@@ -1,12 +1,15 @@
 // Three-lobed Lanczos, the most common choice.
 #define LANCZOS_RADIUS 3.0
 
-#include <math.h>
-#include <assert.h>
 #include <GL/glew.h>
+#include <assert.h>
+#include <limits.h>
+#include <math.h>
+#include <stdio.h>
+#include <algorithm>
 
-#include "resample_effect.h"
 #include "effect_chain.h"
+#include "resample_effect.h"
 #include "util.h"
 
 namespace {