X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=effect_chain.h;h=593232cf01e036f47728ae1fd3d2c756bf6d3d85;hb=45a95fea489e8972a3387b5b7d09b625b3291b40;hp=59949491e668eba68ec21202f8779d7dd6967ab4;hpb=407d90be3e45ddb7f5a53c16728bfa791998cb72;p=movit diff --git a/effect_chain.h b/effect_chain.h index 5994949..593232c 100644 --- a/effect_chain.h +++ b/effect_chain.h @@ -16,8 +16,12 @@ // but if so, the threads' contexts need to be set up to share resources, since // the EffectChain holds textures and other OpenGL objects that are tied to the // context. +// +// Memory management (only relevant if you use multiple contexts): +// See corresponding comment in resource_pool.h. This holds even if you don't +// allocate your own ResourcePool, but let EffectChain hold its own. -#include +#include #include #include #include @@ -228,6 +232,13 @@ private: // as the last effect. Also pushes all phases in order onto . Phase *construct_phase(Node *output, std::map *completed_effects); + // Execute one phase, ie. set up all inputs, effects and outputs, and render the quad. + void execute_phase(Phase *phase, bool last_phase, std::map *output_textures, std::set *generated_mipmaps); + + // Set up the given sampler number for sampling from an RTT texture, + // and bind it to "tex_" plus the given GLSL variable. + void setup_rtt_sampler(GLuint glsl_program_num, int sampler_num, const std::string &effect_id, bool use_mipmaps); + // Output the current graph to the given file in a Graphviz-compatible format; // only useful for debugging. void output_dot(const char *filename);