]> git.sesse.net Git - movit/blob - effect.h
Flesh out the blur code a little. It actually blurs now, although it is not as pretty...
[movit] / effect.h
1 #ifndef _EFFECT_H
2 #define _EFFECT_H 1
3
4 #include <map>
5 #include <string>
6
7 #include <GL/gl.h>
8
9 // Can alias on a float[2].
10 struct Point2D {
11         Point2D(float x, float y)
12                 : x(x), y(y) {}
13
14         float x, y;
15 };
16
17 // Can alias on a float[3].
18 struct RGBTriplet {
19         RGBTriplet(float r, float g, float b)
20                 : r(r), g(g), b(b) {}
21
22         float r, g, b;
23 };
24
25 // Convenience functions that deal with prepending the prefix.
26 void set_uniform_int(GLuint glsl_program_num, const std::string &prefix, const std::string &key, int value);
27 void set_uniform_float(GLuint glsl_program_num, const std::string &prefix, const std::string &key, float value);
28 void set_uniform_float_array(GLuint glsl_program_num, const std::string &prefix, const std::string &key, const float *values, size_t num_values);
29 void set_uniform_vec2(GLuint glsl_program_num, const std::string &prefix, const std::string &key, const float *values);
30 void set_uniform_vec3(GLuint glsl_program_num, const std::string &prefix, const std::string &key, const float *values);
31 void set_uniform_vec4_array(GLuint glsl_program_num, const std::string &prefix, const std::string &key, const float *values, size_t num_values);
32
33 class Effect {
34 public: 
35         virtual bool needs_linear_light() const { return true; }
36         virtual bool needs_srgb_primaries() const { return true; }
37         virtual bool needs_many_samples() const { return false; }
38         virtual bool needs_mipmaps() const { return false; }
39
40         virtual std::string output_convenience_uniforms() const;
41         virtual std::string output_fragment_shader() = 0;
42
43         virtual void set_uniforms(GLuint glsl_program_num, const std::string& prefix, unsigned *sampler_num);
44
45         // Neither of these take ownership.
46         bool set_int(const std::string&, int value);
47         bool set_float(const std::string &key, float value);
48         bool set_vec2(const std::string &key, const float *values);
49         bool set_vec3(const std::string &key, const float *values);
50
51 protected:
52         // Neither of these take ownership.
53         void register_int(const std::string &key, int *value);
54         void register_float(const std::string &key, float *value);
55         void register_vec2(const std::string &key, float *values);
56         void register_vec3(const std::string &key, float *values);
57         void register_1d_texture(const std::string &key, float *values, size_t size);
58         void invalidate_1d_texture(const std::string &key);
59         
60 private:
61         struct Texture1D {
62                 float *values;
63                 size_t size;
64                 bool needs_update;
65                 GLuint texture_num;
66         };
67
68         std::map<std::string, int *> params_int;
69         std::map<std::string, float *> params_float;
70         std::map<std::string, float *> params_vec2;
71         std::map<std::string, float *> params_vec3;
72         std::map<std::string, Texture1D> params_tex_1d;
73 };
74
75 #endif // !defined(_EFFECT_H)