mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 14:19:19 +01:00
pdf mostly working, need to work out the kinks tomorrow
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user