From d286b0918dac289cf719febc281c6be3b760e47d Mon Sep 17 00:00:00 2001 From: codeanticode Date: Thu, 13 Aug 2015 16:01:39 -0400 Subject: [PATCH] removed debug message --- core/src/processing/opengl/PGL.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/processing/opengl/PGL.java b/core/src/processing/opengl/PGL.java index 0a46de823..c0108f0a1 100644 --- a/core/src/processing/opengl/PGL.java +++ b/core/src/processing/opengl/PGL.java @@ -569,8 +569,6 @@ public abstract class PGL { if (needFBOLayer(clear0)) { if (!fboLayerCreated) createFBOLayer(); -// System.err.println("Using FBO layer"); - bindFramebufferImpl(FRAMEBUFFER, glColorFbo.get(0)); framebufferTexture2D(FRAMEBUFFER, COLOR_ATTACHMENT0, TEXTURE_2D, glColorTex.get(backTex), 0); @@ -756,8 +754,6 @@ public abstract class PGL { String ext = getString(EXTENSIONS); float scale = pg.getPixelScale(); - System.err.println("creating fbo layer"); - if (-1 < ext.indexOf("texture_non_power_of_two")) { fboWidth = (int)(scale * pg.width); fboHeight = (int)(scale * pg.height);