From d4816e537b4318c181fbc1373d2b02c64c3cf83d Mon Sep 17 00:00:00 2001 From: codeanticode Date: Mon, 16 Jul 2012 06:37:00 +0000 Subject: [PATCH] remove debug printlns --- android/core/src/processing/opengl/Texture.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/android/core/src/processing/opengl/Texture.java b/android/core/src/processing/opengl/Texture.java index c00e1fc1c..1e532d2ca 100644 --- a/android/core/src/processing/opengl/Texture.java +++ b/android/core/src/processing/opengl/Texture.java @@ -411,7 +411,6 @@ public class Texture implements PConstants { } if (isModified()) { - PApplet.println("Getting pixels from texture..."); // Regular pixel copy from texture. get(pixels); } @@ -591,8 +590,6 @@ public class Texture implements PConstants { if (y2 < my1) my1 = PApplet.max(0, y2); if (y2 > my2) my2 = PApplet.min(height - 1, y2); } - - PApplet.println("Marking texels @" + x + "," + y + " " + w + "x" + h + " as updated"); }