X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=mix_effect.h;h=1305433d096a758bc701c5d233d855706dc170dd;hp=d891eb5212f7470d013553bc48a2b742d5a40f69;hb=39b6975420669958ed9f4013440aea415134a902;hpb=720873f02e01c2aba9ce53bb5c6bcbe887af27ce diff --git a/mix_effect.h b/mix_effect.h index d891eb5..1305433 100644 --- a/mix_effect.h +++ b/mix_effect.h @@ -13,12 +13,12 @@ namespace movit { class MixEffect : public Effect { public: MixEffect(); - virtual std::string effect_type_id() const { return "MixEffect"; } - std::string output_fragment_shader(); + std::string effect_type_id() const override { return "MixEffect"; } + std::string output_fragment_shader() override; - virtual bool needs_srgb_primaries() const { return false; } - virtual unsigned num_inputs() const { return 2; } - virtual bool one_to_one_sampling() const { return true; } + bool needs_srgb_primaries() const override { return false; } + unsigned num_inputs() const override { return 2; } + bool one_to_one_sampling() const override { return true; } // TODO: In the common case where a+b=1, it would be useful to be able to set // alpha_handling() to INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK. However, right now