From ac55a70c8387309cc7b05779b8c1bfb34bc2286d Mon Sep 17 00:00:00 2001 From: Vincent Lejeune Date: Wed, 9 Jul 2014 02:29:49 +0200 Subject: [PATCH] Mimic previous motion blur behavior Depending on zypper + mask on center. --- data/shaders/motion_blur.frag | 2 +- src/graphics/post_processing.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/shaders/motion_blur.frag b/data/shaders/motion_blur.frag index 2db9f093e..ae21e33d1 100644 --- a/data/shaders/motion_blur.frag +++ b/data/shaders/motion_blur.frag @@ -80,7 +80,7 @@ void main() blur_factor *= boost_amount; // Scale the blur direction - blur_dir *= boost_amount; + blur_dir *= blur_factor; // Compute the blur vec2 inc_vec = blur_dir / vec2(NB_SAMPLES); diff --git a/src/graphics/post_processing.cpp b/src/graphics/post_processing.cpp index d3073a5df..24e3968fd 100644 --- a/src/graphics/post_processing.cpp +++ b/src/graphics/post_processing.cpp @@ -612,7 +612,7 @@ void PostProcessing::renderMotionBlur(unsigned cam, FrameBuffer &in_fbo, FrameBu glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); setTexture(1, irr_driver->getDepthStencilTexture(), GL_NEAREST, GL_NEAREST); FullScreenShader::MotionBlurShader - ::setUniforms(.1, // Todo : should be framerate dependent + ::setUniforms(cb->getBoostTime(0) * 10, // Todo : should be framerate dependent // Todo : use a previousPVMatrix per cam, not global irr_driver->getPreviousPVMatrix(), cb->getCenter(cam),