[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47318] branches/soc-2011-tomato/source/ blender/blenkernel/intern/mask.c: Change in debug print for BKE_mask_spline_ensure_deform -- " alloc new spline" was a bit misleading,

Sergey Sharybin sergey.vfx at gmail.com
Fri Jun 1 14:34:44 CEST 2012


Revision: 47318
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47318
Author:   nazgul
Date:     2012-06-01 12:34:44 +0000 (Fri, 01 Jun 2012)
Log Message:
-----------
Change in debug print for BKE_mask_spline_ensure_deform -- "alloc new spline" was a bit misleading,
changed with "alloc new deform spline"

Modified Paths:
--------------
    branches/soc-2011-tomato/source/blender/blenkernel/intern/mask.c

Modified: branches/soc-2011-tomato/source/blender/blenkernel/intern/mask.c
===================================================================
--- branches/soc-2011-tomato/source/blender/blenkernel/intern/mask.c	2012-06-01 12:30:27 UTC (rev 47317)
+++ branches/soc-2011-tomato/source/blender/blenkernel/intern/mask.c	2012-06-01 12:34:44 UTC (rev 47318)
@@ -1200,7 +1200,7 @@
 // printf("SPLINE ALLOC %p %d\n", spline->points_deform, (int)(MEM_allocN_len(spline->points_deform) / sizeof(*spline->points_deform)));
 
 	if (spline->points_deform == NULL || allocated_points != spline->tot_point) {
-		printf("alloc new spline\n");
+		printf("alloc new deform spline\n");
 
 		if (spline->points_deform) {
 			int i;




More information about the Bf-blender-cvs mailing list