added GLW library for native window output using NEWT

This commit is contained in:
codeanticode
2013-09-13 19:25:37 -04:00
parent fab8555160
commit afd8a66df2
10 changed files with 225 additions and 0 deletions
@@ -0,0 +1,13 @@
import processing.nwin.*;
void setup() {
size(2560, 1440, NWin.P2D);
frameRate(180);
}
void draw() {
background(255, 0, 0);
fill(255);
text("FPS: " + frameRate, mouseX, mouseY);
}