From d9557d01bd2f724bc8995c916f91d66ef85d2faa Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Wed, 26 Mar 2014 21:08:58 +0100 Subject: T39307: The fast gaussian blur is not an accurate formula. When deciding which tiles are selected for input there was always a constant for correcting the accuracy. It seems that the constant was not enough and has been adjusted. (2 => 3). --- source/blender/compositor/COM_defines.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source/blender/compositor/COM_defines.h') diff --git a/source/blender/compositor/COM_defines.h b/source/blender/compositor/COM_defines.h index 3b0e9f239bb..6c07aadc3aa 100644 --- a/source/blender/compositor/COM_defines.h +++ b/source/blender/compositor/COM_defines.h @@ -109,4 +109,13 @@ typedef enum OrderOfChunks { #define COM_BLUR_BOKEH_PIXELS 512 +/** + * The fast gaussien blur is not an accurate blur. + * This setting can be used to increase/decrease the + * amount of the input data. (dependent area of interest) + * + * Fix for: T39307 + */ +#define COM_FAST_GAUSSIAN_MULTIPLIER 3 + #endif /* __COM_DEFINES_H__ */ -- cgit v1.2.3