X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=mirror_effect.h;h=343eb173a52a96c717ee5bc49c44314bb9db6ae4;hp=6b07ea9433622e0b93c87b319d1ee31267978d68;hb=05ae48a62f4a507c1eef75b9220f88f2b9fda563;hpb=91c70600f2d0a6a42420ee98949cf182859b798f diff --git a/mirror_effect.h b/mirror_effect.h index 6b07ea9..343eb17 100644 --- a/mirror_effect.h +++ b/mirror_effect.h @@ -1,12 +1,17 @@ #ifndef _MIRROR_EFFECT_H #define _MIRROR_EFFECT_H 1 +// A simple horizontal mirroring. + #include "effect.h" class MirrorEffect : public Effect { public: MirrorEffect(); std::string output_fragment_shader(); + + virtual bool needs_linear_light() const { return false; } + virtual bool needs_srgb_primaries() const { return false; } }; #endif // !defined(_MIRROR_EFFECT_H)