Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-06-20 17:32:30 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-06-20 17:32:30 +0400
commita550b6fe39660f30333e9626979421cad4df7110 (patch)
treee4f612c4efa77afd2d71cc37b5260196385306ba
parent906a635bd060b1446bcfd0c6174e3a06401e1d27 (diff)
Silent masks "alloc new deform spline" debug print
-rw-r--r--source/blender/blenkernel/intern/mask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mask.c b/source/blender/blenkernel/intern/mask.c
index c80a240f7e3..b50356afcb5 100644
--- a/source/blender/blenkernel/intern/mask.c
+++ b/source/blender/blenkernel/intern/mask.c
@@ -1453,7 +1453,7 @@ void BKE_mask_spline_ensure_deform(MaskSpline *spline)
// printf("SPLINE ALLOC %p %d\n", spline->points_deform, allocated_points);
if (spline->points_deform == NULL || allocated_points != spline->tot_point) {
- printf("alloc new deform spline\n");
+ // printf("alloc new deform spline\n");
if (spline->points_deform) {
int i;