[Bf-extensions-cvs] [83b911f] master: Auto Tile Size addon Don't print tile size on terminal, was only for debug

Pablo Vazquez noreply at git.blender.org
Fri May 29 13:07:26 CEST 2015


Commit: 83b911f409b9ddc7dbcacbe3a4e111506f26a350
Author: Pablo Vazquez
Date:   Fri May 29 13:06:48 2015 +0200
Branches: master
https://developer.blender.org/rBA83b911f409b9ddc7dbcacbe3a4e111506f26a350

Auto Tile Size addon
Don't print tile size on terminal, was only for debug

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

M	render_auto_tile_size.py

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

diff --git a/render_auto_tile_size.py b/render_auto_tile_size.py
index 00f848e..bd7b6b2 100644
--- a/render_auto_tile_size.py
+++ b/render_auto_tile_size.py
@@ -288,7 +288,8 @@ def do_set_tile_size(context):
         tile_x = target
         tile_y = target
 
-    print("Tile size: %dx%d (%dx%d tiles)" % (tile_x, tile_y, ceil(xres / tile_x), ceil(yres / tile_y)))
+    # Print tile size (for debug purposes)
+    # print("Tile size: %dx%d (%dx%d tiles)" % (tile_x, tile_y, ceil(xres / tile_x), ceil(yres / tile_y)))
 
     # Detect if there are fewer tiles than available threads
     threads = get_threads(context, device)



More information about the Bf-extensions-cvs mailing list