├── example ├── .gitignore ├── Makefile ├── Project.xcconfig ├── bin │ └── data │ │ └── .gitignore ├── config.make ├── example-ofxLayer.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Debug.xcscheme │ │ └── Release.xcscheme ├── openFrameworks-Info.plist └── src │ └── ofApp.cpp └── src ├── ofxLayer.cpp ├── ofxLayer.h ├── ofxLayerConstants.h ├── ofxLayerManager.cpp └── ofxLayerManager.h /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/bin/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/bin/data/.gitignore -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example-ofxLayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/example-ofxLayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/example-ofxLayer.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/example-ofxLayer.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme -------------------------------------------------------------------------------- /example/example-ofxLayer.xcodeproj/xcshareddata/xcschemes/Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/example-ofxLayer.xcodeproj/xcshareddata/xcschemes/Release.xcscheme -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofxLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/src/ofxLayer.cpp -------------------------------------------------------------------------------- /src/ofxLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/src/ofxLayer.h -------------------------------------------------------------------------------- /src/ofxLayerConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/src/ofxLayerConstants.h -------------------------------------------------------------------------------- /src/ofxLayerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/src/ofxLayerManager.cpp -------------------------------------------------------------------------------- /src/ofxLayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxLayer/HEAD/src/ofxLayerManager.h --------------------------------------------------------------------------------