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:
authorAntony Riakiotakis <kalast@gmail.com>2014-10-30 23:48:44 +0300
committerAntony Riakiotakis <kalast@gmail.com>2014-10-30 23:48:44 +0300
commite414853e1862a0e277bc949d29c1b8df31935edb (patch)
tree74af402db37c230bc92b610da1876e4e4841387e
parent37807d93bd2d731c50203f23666e4621de8b8679 (diff)
Remove leftover error prints.
-rw-r--r--source/blender/editors/sculpt_paint/paint_image_proj.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_image_proj.c b/source/blender/editors/sculpt_paint/paint_image_proj.c
index fe933f8d057..61bd18dc843 100644
--- a/source/blender/editors/sculpt_paint/paint_image_proj.c
+++ b/source/blender/editors/sculpt_paint/paint_image_proj.c
@@ -1113,19 +1113,6 @@ static void uv_image_outset(float (*orig_uv)[2], float (*outset_uv)[2], const fl
angle_cos = (normalize_v2(no3) < SMALL_NUMBER) ? fabsf(dot_v2v2(dir2, no3)) : 0.0f;
a3 = (UNLIKELY(angle_cos < SMALL_NUMBER)) ? 1.0f : (1.0f / angle_cos);
- if (a1 > 10.0) {
- printf("lala a1 %f\n", a1);
- fflush(stdout);
- }
- if (a2 > 10.0) {
- printf("lala a2 %f\n", a2);
- fflush(stdout);
- }
- if (a3 > 10.0) {
- printf("lala a3 %f\n", a3);
- fflush(stdout);
- }
-
mul_v2_fl(no1, a1 * scaler);
mul_v2_fl(no2, a2 * scaler);
mul_v2_fl(no3, a3 * scaler);