├── .gitignore ├── .travis.yml ├── License.md ├── ReadMe.md ├── addon_config.mk ├── appveyor.yml ├── example ├── addons.make ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ofxaddons_thumbnail.png ├── scripts └── ci │ └── install.sh └── src ├── GL_Measurement.h ├── MinimalTree.cpp ├── MinimalTree.h ├── ofxTimeMeasurements.cpp ├── ofxTimeMeasurements.h ├── ofxTimeMeasurementsMacros.h ├── ofxTimeMeasurementsScoped.cpp └── ofxTimeMeasurementsScoped.h /.gitignore: -------------------------------------------------------------------------------- 1 | .AppleDouble 2 | 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/.travis.yml -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/License.md -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/ReadMe.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/addon_config.mk -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/appveyor.yml -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxTimeMeasurements 2 | -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/example/config.make -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /scripts/ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/scripts/ci/install.sh -------------------------------------------------------------------------------- /src/GL_Measurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/src/GL_Measurement.h -------------------------------------------------------------------------------- /src/MinimalTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/src/MinimalTree.cpp -------------------------------------------------------------------------------- /src/MinimalTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/src/MinimalTree.h -------------------------------------------------------------------------------- /src/ofxTimeMeasurements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/src/ofxTimeMeasurements.cpp -------------------------------------------------------------------------------- /src/ofxTimeMeasurements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/src/ofxTimeMeasurements.h -------------------------------------------------------------------------------- /src/ofxTimeMeasurementsMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/src/ofxTimeMeasurementsMacros.h -------------------------------------------------------------------------------- /src/ofxTimeMeasurementsScoped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/src/ofxTimeMeasurementsScoped.cpp -------------------------------------------------------------------------------- /src/ofxTimeMeasurementsScoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armadillu/ofxTimeMeasurements/HEAD/src/ofxTimeMeasurementsScoped.h --------------------------------------------------------------------------------