X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=resample_effect.h;h=628c61a348ea3ba22904370a4a572f753dfed8aa;hp=b66ca6fe4ba30bd2ec817a634b6255bd2e316eee;hb=5dfd8dfbd444210f9c9e3a0baf5c82b49e76e7ff;hpb=37f56fcbe571b2322243f6de59494bf9e0cbb37a diff --git a/resample_effect.h b/resample_effect.h index b66ca6f..628c61a 100644 --- a/resample_effect.h +++ b/resample_effect.h @@ -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. // @@ -22,6 +22,8 @@ #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; }; -#endif // !defined(_RESAMPLE_EFFECT_H) +} // namespace movit + +#endif // !defined(_MOVIT_RESAMPLE_EFFECT_H)