changed visibility

This commit is contained in:
codeanticode
2012-12-18 00:39:47 +00:00
parent 3b574427e8
commit 2791300413
4 changed files with 6 additions and 6 deletions
@@ -107,7 +107,7 @@ public class PGraphicsOpenGL extends PGraphics {
// Basic rendering parameters:
/** Whether the PGraphics object is ready to render or not. */
protected boolean initialized;
public boolean initialized;
/** Flush modes: continuously (geometry is flushed after each call to
* endShape) when-full (geometry is accumulated until a maximum size is
@@ -10317,7 +10317,7 @@ public class PGraphicsOpenGL extends PGraphics {
int firstPointIndexCache;
int lastPointIndexCache;
Tessellator() {
public Tessellator() {
callback = new TessellatorCallback();
gluTess = pgl.createTessellator(callback);
rawIndices = new int[512];
@@ -1250,7 +1250,7 @@ public class Texture implements PConstants {
}
protected void colorBufferOf(PGraphicsOpenGL pgDraw) {
public void colorBufferOf(PGraphicsOpenGL pgDraw) {
this.pgDraw = pgDraw;
}
@@ -107,7 +107,7 @@ public class PGraphicsOpenGL extends PGraphics {
// Basic rendering parameters:
/** Whether the PGraphics object is ready to render or not. */
protected boolean initialized;
public boolean initialized;
/** Flush modes: continuously (geometry is flushed after each call to
* endShape) when-full (geometry is accumulated until a maximum size is
@@ -10317,7 +10317,7 @@ public class PGraphicsOpenGL extends PGraphics {
int firstPointIndexCache;
int lastPointIndexCache;
Tessellator() {
public Tessellator() {
callback = new TessellatorCallback();
gluTess = pgl.createTessellator(callback);
rawIndices = new int[512];
+1 -1
View File
@@ -1250,7 +1250,7 @@ public class Texture implements PConstants {
}
protected void colorBufferOf(PGraphicsOpenGL pgDraw) {
public void colorBufferOf(PGraphicsOpenGL pgDraw) {
this.pgDraw = pgDraw;
}