[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [49421] trunk/blender/intern/cycles/render /image.cpp: Remove "Loading byte/float" debug messages.

Sergey Sharybin sergey.vfx at gmail.com
Tue Jul 31 17:28:36 CEST 2012


Revision: 49421
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=49421
Author:   nazgul
Date:     2012-07-31 15:28:36 +0000 (Tue, 31 Jul 2012)
Log Message:
-----------
Remove "Loading byte/float" debug messages. They were added at the time
we've been looking into texture limit for Mango and it's not needed now.

Anyway, this prints didn't cover all the cases when images were loading.

Modified Paths:
--------------
    trunk/blender/intern/cycles/render/image.cpp

Modified: trunk/blender/intern/cycles/render/image.cpp
===================================================================
--- trunk/blender/intern/cycles/render/image.cpp	2012-07-31 15:05:16 UTC (rev 49420)
+++ trunk/blender/intern/cycles/render/image.cpp	2012-07-31 15:28:36 UTC (rev 49421)
@@ -235,8 +235,6 @@
 		return false;
 	}
 
-	printf("loading byte image: '%s' %dx%d\n", img->filename.c_str(), width, height);
-
 	/* read RGBA pixels */
 	uchar *pixels = (uchar*)tex_img.resize(width, height);
 	int scanlinesize = width*components*sizeof(uchar);
@@ -299,8 +297,6 @@
 		return false;
 	}
 
-	printf("loading float image: '%s' %dx%d\n", img->filename.c_str(), width, height);
-
 	/* read RGBA pixels */
 	float *pixels = (float*)tex_img.resize(width, height);
 	int scanlinesize = width*components*sizeof(float);




More information about the Bf-blender-cvs mailing list