X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=overlay_effect.h;fp=overlay_effect.h;h=2f88d12caa3b1aa2cb6c3cdff9c6754bc08b1d77;hp=40a6fff99e2a465f71cff654d8ae675495c08685;hb=39b6975420669958ed9f4013440aea415134a902;hpb=720873f02e01c2aba9ce53bb5c6bcbe887af27ce diff --git a/overlay_effect.h b/overlay_effect.h index 40a6fff..2f88d12 100644 --- a/overlay_effect.h +++ b/overlay_effect.h @@ -19,19 +19,19 @@ namespace movit { class OverlayEffect : public Effect { public: OverlayEffect(); - virtual std::string effect_type_id() const { return "OverlayEffect"; } - std::string output_fragment_shader(); + std::string effect_type_id() const override { return "OverlayEffect"; } + 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; } // Actually, if _either_ image has blank alpha, our output will have // blank alpha, too (this only tells the framework that having _both_ // images with blank alpha would result in blank alpha). // However, understanding that would require changes // to EffectChain, so postpone that optimization for later. - virtual AlphaHandling alpha_handling() const { return INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK; } + AlphaHandling alpha_handling() const override { return INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK; } private: // If true, overlays input1 on top of input2 instead of vice versa.