├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeModules └── app.plist.in ├── README.md └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | xcode/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonfreitas/opengl-boilerplate/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonfreitas/opengl-boilerplate/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/app.plist.in: -------------------------------------------------------------------------------- 1 | 2 | NSHighResolutionCapable 3 | 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonfreitas/opengl-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonfreitas/opengl-boilerplate/HEAD/main.cpp --------------------------------------------------------------------------------