[Bf-blender-cvs] [2175fb02170] master: Fix T65333: VSE: Playback speed regression

Richard Antalik noreply at git.blender.org
Fri Jun 7 01:24:38 CEST 2019


Commit: 2175fb02170401355697dec36bed9be6a72c5570
Author: Richard Antalik
Date:   Thu Jun 6 12:42:41 2019 -0700
Branches: master
https://developer.blender.org/rB2175fb02170401355697dec36bed9be6a72c5570

Fix T65333: VSE: Playback speed regression

3D engine settings were used to select image scaling method.
Use higher quality scaling only for rendering.

Reviewed By: brecht

Differential Revision: https://developer.blender.org/D4995

===================================================================

M	source/blender/blenkernel/intern/sequencer.c

===================================================================

diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index 171635cc6b5..24342ab34ba 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -2787,7 +2787,7 @@ static ImBuf *input_preprocess(const SeqRenderData *context,
   }
 
   if (ibuf->x != context->rectx || ibuf->y != context->recty) {
-    if (scene->display.render_aa > SCE_DISPLAY_AA_FXAA) {
+    if (context->for_render) {
       IMB_scaleImBuf(ibuf, (short)context->rectx, (short)context->recty);
     }
     else {



More information about the Bf-blender-cvs mailing list