Mercurial > hg > soniczoomios
annotate main.mm @ 43:b91a1859829a
used UIkit sliders
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Fri, 19 Apr 2013 18:50:04 +0100 |
parents | df7c08faf541 |
children | 0d3a993405e4 |
rev | line source |
---|---|
rt300@0 | 1 #include "ofMain.h" |
rt300@0 | 2 #include "testApp.h" |
rt300@0 | 3 |
rt300@0 | 4 Grid theGridView; // global because it saves PAIN |
rt300@0 | 5 |
rt300@0 | 6 int main(){ |
rt300@39 | 7 //ofAppiPhoneWindow * iOSWindow = new ofAppiPhoneWindow(); |
rt300@39 | 8 //iOSWindow->enableAntiAliasing(2); |
rt300@39 | 9 //iOSWindow->enableRetinaSupport(); |
rt300@39 | 10 |
rt300@0 | 11 ofSetupOpenGL(1024,768, OF_FULLSCREEN); // <-------- setup the GL context |
rt300@0 | 12 ofRunApp(new testApp); |
rt300@0 | 13 } |