]> git.sesse.net Git - movit/blobdiff - vignette_effect.h
In overlay matte, use the luminance as a matte instead of each individual color compo...
[movit] / vignette_effect.h
index 6caff3616cdaff6d732e34107edc04f0e700d94f..d7c66f63b0d4f2146972418169755e30f0810db7 100644 (file)
@@ -1,14 +1,19 @@
 #ifndef _VIGNETTE_EFFECT_H
 #define _VIGNETTE_EFFECT_H 1
 
+// A circular vignette, falling off as cosĀ² of the distance from the center
+// (the classic formula for approximating a real lens).
+
 #include "effect.h"
 
 class VignetteEffect : public Effect {
 public:
        VignetteEffect();
-       std::string output_glsl();
+       std::string output_fragment_shader();
+
+       virtual bool needs_srgb_primaries() const { return false; }
 
-       void set_uniforms(GLhandleARB glsl_program_num, const std::string &prefix);
+       void set_gl_state(GLuint glsl_program_num, const std::string &prefix, unsigned *sampler_num);
 
 private:
        Point2D center;