]> git.sesse.net Git - movit/blobdiff - resample_effect.h
Merge branch 'master' into epoxy
[movit] / resample_effect.h
index b38728f05fa423061bb9002ce2bfb261ff73c4ff..24e637260ea97489d54080bef521572bc68d8b05 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef _RESAMPLE_EFFECT_H
-#define _RESAMPLE_EFFECT_H 1
+#ifndef _MOVIT_RESAMPLE_EFFECT_H
+#define _MOVIT_RESAMPLE_EFFECT_H 1
 
 // High-quality image resizing, either up or down.
 //
 // which is what the user is intended to use, instantiates two copies of
 // SingleResamplePassEffect behind the scenes).
 
+#include <epoxy/gl.h>
+#include <assert.h>
+#include <stddef.h>
+#include <string>
+
 #include "effect.h"
 
+namespace movit {
+
+class EffectChain;
+class Node;
 class SingleResamplePassEffect;
 
 class ResampleEffect : public Effect {
@@ -29,7 +38,6 @@ public:
        // down quite a lot.
        virtual bool needs_texture_bounce() const { return true; }
        virtual bool needs_srgb_primaries() const { return false; }
-       virtual AlphaHandling alpha_handling() const { return INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK; }
 
        virtual void inform_input_size(unsigned input_num, unsigned width, unsigned height);
 
@@ -63,6 +71,7 @@ public:
 
        virtual bool needs_texture_bounce() const { return true; }
        virtual bool needs_srgb_primaries() const { return false; }
+       virtual AlphaHandling alpha_handling() const { return INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK; }
 
        virtual void inform_input_size(unsigned input_num, unsigned width, unsigned height) {
                if (parent != NULL) {
@@ -92,4 +101,6 @@ private:
        float slice_height;
 };
 
-#endif // !defined(_RESAMPLE_EFFECT_H)
+}  // namespace movit
+
+#endif // !defined(_MOVIT_RESAMPLE_EFFECT_H)