diff options
Diffstat (limited to 'gui/src/main.cpp')
| -rw-r--r-- | gui/src/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gui/src/main.cpp b/gui/src/main.cpp index 521be02..d58e5e2 100644 --- a/gui/src/main.cpp +++ b/gui/src/main.cpp @@ -1,6 +1,8 @@ #include "ofMain.h" #include "ofApp.h" +//#define GPU_ALGORITHM + //======================================================================== int main(int argc, char *argv[]){ /* @@ -19,6 +21,11 @@ int main(int argc, char *argv[]){ //app->arguments = vector<string>(argv, argv + argc); ofGLFWWindowSettings settings; + +#ifdef GPU_ALGORITHM + settings.setGLVersion(3,2); //doesn't support gluLookat +#endif //GPU_ALGORITHM + settings.width = 1024; settings.height = 576; settings.setPosition(ofVec2f(300,0)); |
