X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=resample_effect.h;h=f0112b3ca7c4abcec1ba73a6ce420f65b10162dd;hp=628c61a348ea3ba22904370a4a572f753dfed8aa;hb=refs%2Fheads%2Fepoxy;hpb=cfc161e0289c2169d4835c48751ff56b97355eb2 diff --git a/resample_effect.h b/resample_effect.h index 628c61a..f0112b3 100644 --- a/resample_effect.h +++ b/resample_effect.h @@ -15,7 +15,7 @@ // which is what the user is intended to use, instantiates two copies of // SingleResamplePassEffect behind the scenes). -#include +#include #include #include #include @@ -73,6 +73,7 @@ public: virtual bool needs_srgb_primaries() const { return false; } virtual AlphaHandling alpha_handling() const { return INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK; } + virtual void inform_added(EffectChain *chain) { this->chain = chain; } virtual void inform_input_size(unsigned input_num, unsigned width, unsigned height) { if (parent != NULL) { parent->inform_input_size(input_num, width, height); @@ -93,6 +94,7 @@ private: void update_texture(GLuint glsl_program_num, const std::string &prefix, unsigned *sampler_num); ResampleEffect *parent; + EffectChain *chain; Direction direction; GLuint texnum; int input_width, input_height, output_width, output_height;