Files
processing4/java/libraries/glw/examples/BigWindow/BigWindow.pde
2013-09-13 19:39:33 -04:00

14 lines
195 B
Plaintext

import processing.glw.*;
void setup() {
size(2560, 1440, GLW.P2D);
frameRate(180);
}
void draw() {
background(255, 0, 0);
fill(255);
text("FPS: " + frameRate, mouseX, mouseY);
}