]> git.sesse.net Git - movit/blobdiff - glow_effect.h
Run include-what-you-use over all of movit. Some hand tuning.
[movit] / glow_effect.h
index abadb84a4cb332a10d45216d73a2fe6bfa2edc6c..3453c997d82ee2938b987089774b2a5677309bde 100644 (file)
@@ -4,11 +4,17 @@
 // Glow: Cut out the highlights of the image (everything above a certain threshold),
 // blur them, and overlay them onto the original image.
 
+#include <GL/glew.h>
+#include <assert.h>
+#include <string>
+
 #include "effect.h"
 
 class BlurEffect;
-class MixEffect;
+class EffectChain;
 class HighlightCutoffEffect;
+class MixEffect;
+class Node;
 
 class GlowEffect : public Effect {
 public: