summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2011-12-19 15:11:44 +0000
committerTim Redfern <tim@eclectronics.org>2011-12-19 15:11:44 +0000
commitf6f57d4d831814abd1e697801688962ef3445022 (patch)
tree3b1bcb82e4e1deed42b5b51744c2713701eef155 /src/main.cpp
parentf96ac8a05c915832c0efe5e70264245fca15b33e (diff)
fixed makefile
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.cpp b/src/main.cpp
index f64c8be..0cd85f7 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2,13 +2,13 @@
#include "testApp.h"
#include "ofAppGlutWindow.h"
-// Includes for Mac OSX
-
+// Includes for Mac OSX
+ /*
#include <GLUT/glut.h>
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
-/*
+/
//Includes for Windows
#include <GL/glew.h>
@@ -22,8 +22,8 @@ int main( ){
ofAppGlutWindow window;
ofSetupOpenGL(&window, 600,600, OF_WINDOW); // <-------- setup the GL context
- glutIgnoreKeyRepeat(1);
- printf("key repeat ignore: %i\n",glutDeviceGet(GLUT_DEVICE_IGNORE_KEY_REPEAT));
+ //glutIgnoreKeyRepeat(1);
+ //printf("key repeat ignore: %i\n",glutDeviceGet(GLUT_DEVICE_IGNORE_KEY_REPEAT));
// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too: