X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=resample_effect.h;h=74585d6d94dae0d3be0ed5fc1da119e8cfc1fc91;hp=5867f25a60a8f041d404565b0c738aea0b8b7732;hb=f8e636666b3d36f97b125bc1a0f0f582c5026c7f;hpb=1a06994ccdeedba95a1bdd2c3c12bb54a7a897f9 diff --git a/resample_effect.h b/resample_effect.h index 5867f25..74585d6 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. // @@ -15,8 +15,15 @@ // which is what the user is intended to use, instantiates two copies of // SingleResamplePassEffect behind the scenes). +#include +#include +#include +#include + #include "effect.h" +class EffectChain; +class Node; class SingleResamplePassEffect; class ResampleEffect : public Effect { @@ -62,6 +69,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) { @@ -70,9 +78,9 @@ public: } virtual bool changes_output_size() const { return true; } - virtual void get_output_size(unsigned *width, unsigned *height) const { - *width = this->output_width; - *height = this->output_height; + virtual void get_output_size(unsigned *width, unsigned *height, unsigned *virtual_width, unsigned *virtual_height) const { + *virtual_width = *width = this->output_width; + *virtual_height = *height = this->output_height; } void set_gl_state(GLuint glsl_program_num, const std::string &prefix, unsigned *sampler_num); @@ -91,4 +99,4 @@ private: float slice_height; }; -#endif // !defined(_RESAMPLE_EFFECT_H) +#endif // !defined(_MOVIT_RESAMPLE_EFFECT_H)