[Bf-blender-cvs] [718af8e8b35] master: T52534: Compositor artifacts when scaling

Jeroen Bakker noreply at git.blender.org
Sun Sep 3 16:56:05 CEST 2017


Commit: 718af8e8b35b2ecef62fb4311ac5fb76134e8846
Author: Jeroen Bakker
Date:   Sun Sep 3 16:47:39 2017 +0200
Branches: master
https://developer.blender.org/rB718af8e8b35b2ecef62fb4311ac5fb76134e8846

T52534: Compositor artifacts when scaling

Increased the maxx and maxy area of interest when scaling in this case.

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

M	source/blender/compositor/operations/COM_ScaleOperation.cpp

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

diff --git a/source/blender/compositor/operations/COM_ScaleOperation.cpp b/source/blender/compositor/operations/COM_ScaleOperation.cpp
index 117ae743ee7..46e155e43b5 100644
--- a/source/blender/compositor/operations/COM_ScaleOperation.cpp
+++ b/source/blender/compositor/operations/COM_ScaleOperation.cpp
@@ -271,9 +271,9 @@ bool ScaleFixedSizeOperation::determineDependingAreaOfInterest(rcti *input, Read
 {
 	rcti newInput;
 
-	newInput.xmax = (input->xmax - m_offsetX) * this->m_relX;
+	newInput.xmax = (input->xmax - m_offsetX) * this->m_relX + 1;
 	newInput.xmin = (input->xmin - m_offsetX) * this->m_relX;
-	newInput.ymax = (input->ymax - m_offsetY) * this->m_relY;
+	newInput.ymax = (input->ymax - m_offsetY) * this->m_relY + 1;
 	newInput.ymin = (input->ymin - m_offsetY) * this->m_relY;
 
 	return BaseScaleOperation::determineDependingAreaOfInterest(&newInput, readOperation, output);



More information about the Bf-blender-cvs mailing list