diff --git a/src/main.cpp b/src/main.cpp index 6a23420..e693878 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -6,7 +6,8 @@ int main( ){ //Use ofGLFWWindowSettings for more options like multi-monitor fullscreen ofGLWindowSettings settings; - settings.setSize(1512, 1080); + //1512x1080 + settings.setSize(1980, 1080); settings.setGLVersion(3, 2); settings.windowMode = OF_WINDOW; //can also be OF_FULLSCREEN diff --git a/src/ofApp.cpp b/src/ofApp.cpp index b93ffc4..5c7b065 100644 --- a/src/ofApp.cpp +++ b/src/ofApp.cpp @@ -5,7 +5,7 @@ void ofApp::setup(){ /* ofSettings */ ofDisableArbTex(); ofSetVerticalSync(true); - window_width = ofGetWindowWidth(); + window_width = 1512; window_height = ofGetWindowHeight(); /* load font */ diff --git a/src/ofApp.h b/src/ofApp.h index 47f104f..4c702d6 100644 --- a/src/ofApp.h +++ b/src/ofApp.h @@ -83,5 +83,8 @@ class ofApp : public ofBaseApp{ std::unique_ptr server; Vector7D embedding; + int app_h = 1080; + int app_w = 1512; + //ofxPiMapper mapper; };