textures working, but still no fonts

This commit is contained in:
benfry
2004-12-12 22:14:31 +00:00
parent b183c00e22
commit 03da3b2334
5 changed files with 55 additions and 11 deletions

View File

@@ -4028,7 +4028,7 @@ public class PApplet extends Applet
Frame frame = new Frame();
frame.setResizable(false); // remove the grow box
frame.pack(); // get insets. get more.
frame.show(); // gl hack
//frame.show(); // gl hack
Class c = Class.forName(name);
PApplet applet = (PApplet) c.newInstance();
@@ -4141,6 +4141,11 @@ public class PApplet extends Applet
// public functions for processing.core
public void modified() {
g.modified();
}
public void alpha(int alpha[]) {
g.alpha(alpha);
}