[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26980] branches/soc-2008-mxcurioni/source /blender/freestyle/intern/application/AppCanvas.cpp: Removed debugging printf() calls.

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Wed Feb 17 00:33:30 CET 2010


Revision: 26980
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26980
Author:   kjym3
Date:     2010-02-17 00:33:30 +0100 (Wed, 17 Feb 2010)

Log Message:
-----------
Removed debugging printf() calls.

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.cpp

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.cpp
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.cpp	2010-02-16 22:34:43 UTC (rev 26979)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.cpp	2010-02-16 23:33:30 UTC (rev 26980)
@@ -120,7 +120,7 @@
 		int recty = _pass_z.height;
 		float xfac = ((float)rectx) / ((float)xsch);
 		float yfac = ((float)recty) / ((float)ysch);
-		printf("readColorPixels %d x %d @ (%d, %d) in %d x %d -- %d x %d @ %d%%\n", w, h, x, y, xsch, ysch, rectx, recty, (int)(xfac * 100.0f));
+		//printf("readColorPixels %d x %d @ (%d, %d) in %d x %d -- %d x %d @ %d%%\n", w, h, x, y, xsch, ysch, rectx, recty, (int)(xfac * 100.0f));
 		int ii, jj;
 		for (int j = 0; j < h; j++) {
 			jj = (int)((y + j) * yfac);
@@ -148,7 +148,7 @@
 		int recty = _pass_z.height;
 		float xfac = ((float)rectx) / ((float)xsch);
 		float yfac = ((float)recty) / ((float)ysch);
-		printf("readDepthPixels %d x %d @ (%d, %d) in %d x %d -- %d x %d @ %d%%\n", w, h, x, y, xsch, ysch, rectx, recty, (int)(xfac * 100.0f));
+		//printf("readDepthPixels %d x %d @ (%d, %d) in %d x %d -- %d x %d @ %d%%\n", w, h, x, y, xsch, ysch, rectx, recty, (int)(xfac * 100.0f));
 		int ii, jj;
 		for (int j = 0; j < h; j++) {
 			jj = (int)((y + j) * yfac);





More information about the Bf-blender-cvs mailing list