mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Done with OPENGL2->A3D update
This commit is contained in:
@@ -8113,6 +8113,15 @@ public class PApplet extends Activity implements PConstants, Runnable {
|
||||
}
|
||||
|
||||
|
||||
public void beginText() {
|
||||
g.beginText();
|
||||
}
|
||||
|
||||
|
||||
public void endText() {
|
||||
g.endText();
|
||||
}
|
||||
|
||||
public void texture(PImage image0, PImage image1) {
|
||||
g.texture(image0, image1);
|
||||
}
|
||||
|
||||
@@ -5147,8 +5147,18 @@ public class PGraphics extends PImage implements PConstants {
|
||||
}
|
||||
|
||||
|
||||
public void beginText() {
|
||||
showMissingWarning("beginText");
|
||||
}
|
||||
|
||||
|
||||
public void endText() {
|
||||
showMissingWarning("endText");
|
||||
}
|
||||
|
||||
|
||||
public void texture(PImage image0, PImage image1) {
|
||||
showMissingWarning("multitexturing requires OPENGL2");
|
||||
showMissingWarning("multitexturing requires A3D");
|
||||
}
|
||||
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user