X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=resample_effect.h;h=24e637260ea97489d54080bef521572bc68d8b05;hp=c81362f19ee57079b62df66ce3872f83673192df;hb=12c11c0e615f7fc17ef7a600ff0c9099f7908dbc;hpb=ac4fc36aa70ffefb6b9632dc0abea5cbbce5387b diff --git a/resample_effect.h b/resample_effect.h index c81362f..24e6372 100644 --- a/resample_effect.h +++ b/resample_effect.h @@ -15,13 +15,15 @@ // which is what the user is intended to use, instantiates two copies of // SingleResamplePassEffect behind the scenes). -#include +#include #include #include #include #include "effect.h" +namespace movit { + class EffectChain; class Node; class SingleResamplePassEffect; @@ -36,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); @@ -70,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) { @@ -99,4 +101,6 @@ private: float slice_height; }; +} // namespace movit + #endif // !defined(_MOVIT_RESAMPLE_EFFECT_H)