From: Steinar H. Gunderson Date: Sun, 3 Feb 2013 15:39:44 +0000 (+0100) Subject: Put the resample alpha handling on the right effect. X-Git-Tag: 1.0~119 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=36c525fc42f63bde0ef2ea48554a17a7e18411de Put the resample alpha handling on the right effect. --- diff --git a/resample_effect.h b/resample_effect.h index c81362f..74585d6 100644 --- a/resample_effect.h +++ b/resample_effect.h @@ -36,7 +36,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 +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) {