removed xml shit from the main.cpp

This commit is contained in:
Jamie Allen 2012-02-21 16:56:38 +01:00
parent 5df657051d
commit adbe746afc
3 changed files with 4 additions and 4 deletions

View File

@ -62,6 +62,4 @@ public:
// this should be in xml // this should be in xml
static string _location; static string _location;
ofxCvColorImage colorImg;
}; };

View File

@ -7,11 +7,12 @@
////also the new shit//// ////also the new shit////
int main() { int main() {
ofAppGlutWindow window; ofAppGlutWindow window;
bool fullscreen; bool fullscreen;
//fullscreen = true; fullscreen = true;
fullscreen = false; fullscreen = false;
@ -25,4 +26,5 @@ int main() {
ofSetupOpenGL(&window, SCREEN_WIDTH, SCREEN_HEIGHT, (fullscreen ? OF_FULLSCREEN : OF_WINDOW)); ofSetupOpenGL(&window, SCREEN_WIDTH, SCREEN_HEIGHT, (fullscreen ? OF_FULLSCREEN : OF_WINDOW));
ofRunApp(new RefractiveIndex()); ofRunApp(new RefractiveIndex());
} }

View File

@ -42,6 +42,6 @@ protected:
bool _show_image, _image_shown; bool _show_image, _image_shown;
ofImage image1; ofImage image1;
ofImage image2; ofImage image2;
ofxCvColorImage colorImg;
}; };