/usr/include/movit/alpha_division_effect.h is in libmovit-dev 1.1.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #ifndef _MOVIT_ALPHA_DIVISION_EFFECT_H
#define _MOVIT_ALPHA_DIVISION_EFFECT_H 1
// Convert premultiplied alpha to postmultiplied alpha, simply by multiplying.
#include <string>
#include "effect.h"
namespace movit {
class AlphaDivisionEffect : public Effect {
public:
AlphaDivisionEffect() {}
virtual std::string effect_type_id() const { return "AlphaDivisionEffect"; }
std::string output_fragment_shader();
};
} // namespace movit
#endif // !defined(_MOVIT_ALPHA_DIVISION_EFFECT_H)
|