summaryrefslogtreecommitdiff
path: root/vfg/src/main.cpp
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2012-11-30 13:30:48 +0000
committerComment <tim@gray.(none)>2012-11-30 13:30:48 +0000
commitbbeed54d2c0572d9fc12edab14781dd544dc149a (patch)
treeeec54a5a9741513c545abec4c750a85e1eb7e259 /vfg/src/main.cpp
parent7ae1f870faebb65e9ee3a064fc43ef2fc6955a84 (diff)
demo v0.9
Diffstat (limited to 'vfg/src/main.cpp')
-rwxr-xr-xvfg/src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vfg/src/main.cpp b/vfg/src/main.cpp
index ead5d41..14b1008 100755
--- a/vfg/src/main.cpp
+++ b/vfg/src/main.cpp
@@ -6,11 +6,11 @@
int main( ){
ofAppGlutWindow window;
- ofSetupOpenGL(&window, 800,800, OF_WINDOW); // <-------- setup the GL context
+ ofSetupOpenGL(ofxFensterManager::get(), 800,800, OF_WINDOW); // <-------- setup the GL context
// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too:
- ofRunApp( new testApp());
+ ofRunFensterApp( new testApp());
}