├── .gitignore ├── README.md ├── cinderblock.png ├── cinderblock.xml ├── sample ├── .gitignore ├── assets │ ├── shader.frag │ └── shader.vert ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── CinderFlexApp.cpp └── vc2015 │ ├── CinderFlex.sln │ ├── CinderFlex.vcxproj │ ├── CinderFlex.vcxproj.filters │ └── Resources.rc └── src ├── CinderFlex.cpp └── CinderFlex.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/README.md -------------------------------------------------------------------------------- /cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/cinderblock.png -------------------------------------------------------------------------------- /cinderblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/cinderblock.xml -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/.gitignore -------------------------------------------------------------------------------- /sample/assets/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/assets/shader.frag -------------------------------------------------------------------------------- /sample/assets/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/assets/shader.vert -------------------------------------------------------------------------------- /sample/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/include/Resources.h -------------------------------------------------------------------------------- /sample/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /sample/src/CinderFlexApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/src/CinderFlexApp.cpp -------------------------------------------------------------------------------- /sample/vc2015/CinderFlex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/vc2015/CinderFlex.sln -------------------------------------------------------------------------------- /sample/vc2015/CinderFlex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/vc2015/CinderFlex.vcxproj -------------------------------------------------------------------------------- /sample/vc2015/CinderFlex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/vc2015/CinderFlex.vcxproj.filters -------------------------------------------------------------------------------- /sample/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/sample/vc2015/Resources.rc -------------------------------------------------------------------------------- /src/CinderFlex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/src/CinderFlex.cpp -------------------------------------------------------------------------------- /src/CinderFlex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelpryde/CinderFlex/HEAD/src/CinderFlex.h --------------------------------------------------------------------------------