From 4e772065d7e17e53e31d04816eef7c4468835c82 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 23 Aug 2012 07:02:11 +0000 Subject: set defaults for de-speckle --- source/blender/compositor/operations/COM_DespeckleOperation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/compositor') diff --git a/source/blender/compositor/operations/COM_DespeckleOperation.cpp b/source/blender/compositor/operations/COM_DespeckleOperation.cpp index 6e2f9ab4351..8a18e4e2330 100644 --- a/source/blender/compositor/operations/COM_DespeckleOperation.cpp +++ b/source/blender/compositor/operations/COM_DespeckleOperation.cpp @@ -128,8 +128,8 @@ void DespeckleOperation::executePixel(float output[4], int x, int y, void *data) bool DespeckleOperation::determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output) { rcti newInput; - int addx = 1; //(this->m_filterWidth - 1) / 2 + 1; - int addy = 1; //(this->m_filterHeight - 1) / 2 + 1; + int addx = 2; //(this->m_filterWidth - 1) / 2 + 1; + int addy = 2; //(this->m_filterHeight - 1) / 2 + 1; newInput.xmax = input->xmax + addx; newInput.xmin = input->xmin - addx; newInput.ymax = input->ymax + addy; -- cgit v1.2.3