[Bf-blender-cvs] [3a634524e39] master: Cycles: Cleanup, useless new lines

Sergey Sharybin noreply at git.blender.org
Fri May 19 12:45:37 CEST 2017


Commit: 3a634524e39635cfee7b6ad13d5da7020f48912b
Author: Sergey Sharybin
Date:   Fri May 19 12:45:22 2017 +0200
Branches: master
https://developer.blender.org/rB3a634524e39635cfee7b6ad13d5da7020f48912b

Cycles: Cleanup, useless new lines

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

M	intern/cycles/kernel/filter/filter_transform.h

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

diff --git a/intern/cycles/kernel/filter/filter_transform.h b/intern/cycles/kernel/filter/filter_transform.h
index 4766f225fb1..67faa27a7d4 100644
--- a/intern/cycles/kernel/filter/filter_transform.h
+++ b/intern/cycles/kernel/filter/filter_transform.h
@@ -32,18 +32,12 @@ ccl_device void kernel_filter_construct_transform(const float *ccl_restrict buff
 	const float *ccl_restrict pixel_buffer;
 	int2 pixel;
 
-
-
-
 	/* === Calculate denoising window. === */
 	int2 low  = make_int2(max(rect.x, x - radius),
 	                      max(rect.y, y - radius));
 	int2 high = make_int2(min(rect.z, x + radius + 1),
 	                      min(rect.w, y + radius + 1));
 
-
-
-
 	/* === Shift feature passes to have mean 0. === */
 	float feature_means[DENOISE_FEATURES];
 	math_vector_zero(feature_means, DENOISE_FEATURES);
@@ -66,7 +60,6 @@ ccl_device void kernel_filter_construct_transform(const float *ccl_restrict buff
 
 	filter_calculate_scale(feature_scale);
 
-
 	/* === Generate the feature transformation. ===
 	 * This transformation maps the DENOISE_FEATURES-dimentional feature space to a reduced feature (r-feature) space
 	 * which generally has fewer dimensions. This mainly helps to prevent overfitting. */




More information about the Bf-blender-cvs mailing list