From d3dbfff701b2f7a819a208cc020f4ad6e4bcbab4 Mon Sep 17 00:00:00 2001 From: codeanticode Date: Wed, 16 Jan 2013 16:36:37 +0000 Subject: [PATCH] PGL.getBackTextureName, PGL.getFrontTextureName are protected --- core/src/processing/opengl/PGL.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/processing/opengl/PGL.java b/core/src/processing/opengl/PGL.java index 815998178..3ccc10072 100644 --- a/core/src/processing/opengl/PGL.java +++ b/core/src/processing/opengl/PGL.java @@ -994,7 +994,7 @@ public class PGL { } - int getBackTextureName() { + protected int getBackTextureName() { if (USE_JOGL_FBOLAYER) { return backTexAttach.getName(); } else { @@ -1003,7 +1003,7 @@ public class PGL { } - int getFrontTextureName() { + protected int getFrontTextureName() { if (USE_JOGL_FBOLAYER) { return frontTexAttach.getName(); } else {