/usr/include/movit/mirror_effect.h is in libmovit-dev 1.6.1-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 22 23 24 25 26 | #ifndef _MOVIT_MIRROR_EFFECT_H
#define _MOVIT_MIRROR_EFFECT_H 1
// A simple horizontal mirroring.
#include <string>
#include "effect.h"
namespace movit {
class MirrorEffect : public Effect {
public:
MirrorEffect();
std::string effect_type_id() const override { return "MirrorEffect"; }
std::string output_fragment_shader() override;
bool needs_linear_light() const override { return false; }
bool needs_srgb_primaries() const override { return false; }
AlphaHandling alpha_handling() const override { return DONT_CARE_ALPHA_TYPE; }
bool one_to_one_sampling() const override { return true; }
};
} // namespace movit
#endif // !defined(_MOVIT_MIRROR_EFFECT_H)
|