pdf mostly working, need to work out the kinks tomorrow

This commit is contained in:
benfry
2006-01-12 05:48:25 +00:00
parent 7c12eba22a
commit dc8e91b6d1
5 changed files with 41 additions and 24 deletions

View File

@@ -3543,15 +3543,17 @@ public class PGraphics extends PImage implements PConstants {
}
public void beginRaw(PGraphics recorderRaw) {
public void beginRaw(PGraphics recorderRaw) { // ignore
this.recorderRaw = recorderRaw;
recorderRaw.beginFrame();
}
public void endRaw() {
public void endRaw() { // ignore
if (recorderRaw != null) {
recorderRaw.endFrame();
//System.out.println("legit end raw");
//recorderRaw.endFrame();
recorderRaw.endRaw();
recorderRaw = null;
}
}