[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [29179] branches/render25/source/blender/ blenkernel/intern/pointcache.c: print' s in pointcache were slowing down bake (renderbranch only)

Campbell Barton ideasman42 at gmail.com
Thu Jun 3 13:20:47 CEST 2010


Revision: 29179
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=29179
Author:   campbellbarton
Date:     2010-06-03 13:20:46 +0200 (Thu, 03 Jun 2010)

Log Message:
-----------
print's in pointcache were slowing down bake (renderbranch only)

Modified Paths:
--------------
    branches/render25/source/blender/blenkernel/intern/pointcache.c

Modified: branches/render25/source/blender/blenkernel/intern/pointcache.c
===================================================================
--- branches/render25/source/blender/blenkernel/intern/pointcache.c	2010-06-03 08:41:40 UTC (rev 29178)
+++ branches/render25/source/blender/blenkernel/intern/pointcache.c	2010-06-03 11:20:46 UTC (rev 29179)
@@ -1185,10 +1185,10 @@
 
 	if (mode==PTCACHE_FILE_READ) {
 		if (!BLI_exists(filename)) {
-            printf("pointcache missing: %s\n", filename);
+//            printf("pointcache missing: %s\n", filename);
 			return NULL;
 		}
-        printf("found!: %s\n", filename);
+//        printf("found!: %s\n", filename);
 		 fp = fopen(filename, "rb");
 	} else if (mode==PTCACHE_FILE_WRITE) {
 		BLI_make_existing_file(filename); /* will create the dir if needs be, same as //textures is created */





More information about the Bf-blender-cvs mailing list