├── .travis.yml ├── License.md ├── ReadMe.md ├── example ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── src ├── ofxScreenSetup.cpp └── ofxScreenSetup.h /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxScreenSetup/HEAD/.travis.yml -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxScreenSetup/HEAD/License.md -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxScreenSetup/HEAD/ReadMe.md -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxScreenSetup -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxScreenSetup/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxScreenSetup/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxScreenSetup/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /src/ofxScreenSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxScreenSetup/HEAD/src/ofxScreenSetup.cpp -------------------------------------------------------------------------------- /src/ofxScreenSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxScreenSetup/HEAD/src/ofxScreenSetup.h --------------------------------------------------------------------------------