Mimic previous motion blur behavior

Depending on zypper + mask on center.
This commit is contained in:
Vincent Lejeune 2014-07-09 02:29:49 +02:00
parent aec31b28dd
commit ac55a70c83
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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),