X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=effect_chain.cpp;h=617d1cb007f392bf6fe816c9ccbd1ead68c9722b;hp=a6ed91d5f20a51e406fafc0e79894e0b3f5f2cb0;hb=45c3b698b97bfcf4036910ee3539bd5eab4e9751;hpb=42b10f3a940eb05016764d1a30417ae7f21ae1f3 diff --git a/effect_chain.cpp b/effect_chain.cpp index a6ed91d..617d1cb 100644 --- a/effect_chain.cpp +++ b/effect_chain.cpp @@ -973,7 +973,7 @@ void EffectChain::finalize() finalized = true; } -void EffectChain::render_to_fbo(GLuint fbo, unsigned width, unsigned height) +void EffectChain::render_to_fbo(GLuint dest_fbo, unsigned width, unsigned height) { assert(finalized); @@ -1066,7 +1066,7 @@ void EffectChain::render_to_fbo(GLuint fbo, unsigned width, unsigned height) // And now the output. if (phase == phases.size() - 1) { // Last phase goes to the output the user specified. - glBindFramebuffer(GL_FRAMEBUFFER, fbo); + glBindFramebuffer(GL_FRAMEBUFFER, dest_fbo); check_error(); glViewport(x, y, width, height); } else {