mirror of
https://github.com/processing/processing4.git
synced 2026-06-08 16:40:46 +02:00
changed visibility
This commit is contained in:
@@ -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];
|
||||
|
||||
@@ -1250,7 +1250,7 @@ public class Texture implements PConstants {
|
||||
}
|
||||
|
||||
|
||||
protected void colorBufferOf(PGraphicsOpenGL pgDraw) {
|
||||
public void colorBufferOf(PGraphicsOpenGL pgDraw) {
|
||||
this.pgDraw = pgDraw;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user