Files
processing4/android/examples/OpenGL/Tests/OffscreenTest/OffscreenTest.pde
2012-07-29 00:40:36 +00:00

20 lines
262 B
Plaintext

PGraphics pg;
void setup() {
size(400, 400, P3D);
pg = createGraphics(400, 400, P3D);
}
void draw() {
background(0);
pg.beginDraw();
pg.background(255, 0, 0);
pg.ellipse(mouseX, mouseY, 100, 100);
pg.endDraw();
image(pg, 0, 0, 400, 400);
}