X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=effect.h;h=c016a55070c2fb63585cd381c46c9e69a4de77a4;hp=fcb752638115dd6297bccb918cd606dd3b535645;hb=3d1f6c11c53cd9d3d5c1fb60f4accf050b7f135e;hpb=5058b68995b5d39042df42df06d55559ee535d38 diff --git a/effect.h b/effect.h index fcb7526..c016a55 100644 --- a/effect.h +++ b/effect.h @@ -14,7 +14,9 @@ #include #include -#include +#include + +#include "opengl.h" class EffectChain; @@ -60,7 +62,9 @@ public: // set of RGB primaries; you would currently not get YCbCr // or something similar). // - // Again, most effects will want this. + // Again, most effects will want this, but you can set it to false + // if you process each channel independently, equally _and_ + // in a linear fashion. virtual bool needs_srgb_primaries() const { return true; } // Whether this effect expects its input to come directly from @@ -94,6 +98,21 @@ public: // needs mipmaps, you will also get them). virtual bool needs_mipmaps() const { return false; } + // Whether this effect wants to output to a different size than + // its input(s). If you set this to true, the output will be + // bounced to a texture (similarly to if the next effect set + // needs_texture_bounce()). + virtual bool changes_output_size() const { return false; } + + // If changes_output_size() is true, you must implement this to tell + // the framework what output size you want. + // + // Note that it is explicitly allowed to change width and height + // from frame to frame; EffectChain will reallocate textures as needed. + virtual void get_output_size(unsigned *width, unsigned *height) const { + assert(false); + } + // How many inputs this effect will take (a fixed number). // If you have only one input, it will be called INPUT() in GLSL; // if you have several, they will be INPUT1(), INPUT2(), and so on. @@ -113,17 +132,19 @@ public: // Returns the GLSL fragment shader string for this effect. virtual std::string output_fragment_shader() = 0; - // Set all uniforms the shader needs in the current GL context. - // The default implementation sets one uniform per registered parameter. + // Set all OpenGL state that this effect needs before rendering. + // The default implementation sets one uniform per registered parameter, + // but no other state. // // is the first free texture sampler. If you want to use // textures, you can bind a texture to GL_TEXTURE0 + , // and then increment the number (so that the next effect in the chain // will use a different sampler). - // - // NOTE: Currently this is also abused a bit to set other GL state - // the effect might need. - virtual void set_uniforms(GLuint glsl_program_num, const std::string& prefix, unsigned *sampler_num); + virtual void set_gl_state(GLuint glsl_program_num, const std::string& prefix, unsigned *sampler_num); + + // If you set any special OpenGL state in set_gl_state(), you can clear it + // after rendering here. The default implementation does nothing. + virtual void clear_gl_state(); // Set a parameter; intended to be called from user code. // Neither of these take ownership of the pointer.