]> git.sesse.net Git - movit/blob - alpha_division_effect.h
Typo fixes.
[movit] / alpha_division_effect.h
1 #ifndef _MOVIT_ALPHA_DIVISION_EFFECT_H
2 #define _MOVIT_ALPHA_DIVISION_EFFECT_H 1
3
4 // Convert postmultiplied alpha to premultiplied alpha, simply by dividing.
5
6 #include <string>
7
8 #include "effect.h"
9
10 namespace movit {
11
12 class AlphaDivisionEffect : public Effect {
13 public:
14         AlphaDivisionEffect() {}
15         std::string effect_type_id() const override { return "AlphaDivisionEffect"; }
16         std::string output_fragment_shader() override;
17         bool strong_one_to_one_sampling() const override { return true; }
18 };
19
20 }  // namespace movit
21
22 #endif // !defined(_MOVIT_ALPHA_DIVISION_EFFECT_H)