https://github.com/brannondorsey/betweenthetwoofthese
Custom openFrameworks applications for an 80ft projection installation in Atlanta
https://github.com/brannondorsey/betweenthetwoofthese
Last synced: 8 months ago
JSON representation
Custom openFrameworks applications for an 80ft projection installation in Atlanta
- Host: GitHub
- URL: https://github.com/brannondorsey/betweenthetwoofthese
- Owner: brannondorsey
- Created: 2014-09-10T19:59:53.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-04T20:44:19.000Z (almost 11 years ago)
- Last Synced: 2025-01-12T05:44:17.548Z (10 months ago)
- Language: C++
- Size: 52.3 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Window Project

Projection installation project in downtown Atlanta. Uses a custom [openFrameworks](https://openframeworks.cc) application running on 2 CPUs and 6 projection screens.
## Installation Notes
### Fullscreen Windowing Across Multiple Displays
main.cpp:
```cpp
#include "ofMain.h"
#include "ofApp.h"
#include "ofAppGLFWWindow.h"
//========================================================================
int main( ){
ofAppGLFWWindow window;
window.setMultiDisplayFullscreen(true);
ofSetupOpenGL(&window, 1024,768,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 ofApp());
}
```
"Displays have separate Spaces" must be disabled in System Preferences > Mission Control Preferences on OSX 10.8/10.9.
More info openFrameworks forum [here](http://forum.openframeworks.cc/t/spanning-multiple-displays-as-a-single-canvas-on-os-x-10-8-10-9/16209) and [here](http://forum.openframeworks.cc/t/window-bigger-than-screen-in-of-v0-8-0-and-vertical-sync/13321/4).