[Bf-blender-cvs] [7455108] master: Cleanup: hide clnors warning prints behind G.debug, those can get annoyingly verbose...

Bastien Montagne noreply at git.blender.org
Tue Sep 15 12:04:50 CEST 2015


Commit: 745510844bff2f83d3352b662245a1fad90831ef
Author: Bastien Montagne
Date:   Tue Sep 15 12:03:58 2015 +0200
Branches: master
https://developer.blender.org/rB745510844bff2f83d3352b662245a1fad90831ef

Cleanup: hide clnors warning prints behind G.debug, those can get annoyingly verbose...

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

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

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

diff --git a/source/blender/blenkernel/intern/mesh_evaluate.c b/source/blender/blenkernel/intern/mesh_evaluate.c
index 259a616..2fc5350 100644
--- a/source/blender/blenkernel/intern/mesh_evaluate.c
+++ b/source/blender/blenkernel/intern/mesh_evaluate.c
@@ -51,6 +51,7 @@
 #include "BLI_task.h"
 
 #include "BKE_customdata.h"
+#include "BKE_global.h"
 #include "BKE_mesh.h"
 #include "BKE_multires.h"
 #include "BKE_report.h"
@@ -883,7 +884,9 @@ static void split_loop_nor_fan_do(LoopSplitTaskDataCommon *common_data, LoopSpli
 					clnors_avg[0] /= clnors_nbr;
 					clnors_avg[1] /= clnors_nbr;
 					/* Fix/update all clnors of this fan with computed average value. */
-					printf("Invalid clnors in this fan!\n");
+					if (G.debug & G_DEBUG) {
+						printf("Invalid clnors in this fan!\n");
+					}
 					while ((clnor = BLI_SMALLSTACK_POP(clnors))) {
 						//print_v2("org clnor", clnor);
 						clnor[0] = (short)clnors_avg[0];
@@ -1402,7 +1405,9 @@ static void mesh_normals_loop_custom_set(
 				 * Maybe we should set those loops' edges as sharp?
 				 */
 				BLI_BITMAP_ENABLE(done_loops, i);
-				printf("WARNING! Getting invalid NULL loop space for loop %d!\n", i);
+				if (G.debug & G_DEBUG) {
+					printf("WARNING! Getting invalid NULL loop space for loop %d!\n", i);
+				}
 				continue;
 			}
 
@@ -1483,7 +1488,9 @@ static void mesh_normals_loop_custom_set(
 	for (i = 0; i < numLoops; i++) {
 		if (!lnors_spacearr.lspacearr[i]) {
 			BLI_BITMAP_DISABLE(done_loops, i);
-			printf("WARNING! Still getting invalid NULL loop space in second loop for loop %d!\n", i);
+			if (G.debug & G_DEBUG) {
+				printf("WARNING! Still getting invalid NULL loop space in second loop for loop %d!\n", i);
+			}
 			continue;
 		}




More information about the Bf-blender-cvs mailing list