├── .gitignore ├── L01_Camera ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ └── L01_CameraApp.cpp ├── vc2013 │ ├── L01_Camera.sln │ ├── L01_Camera.vcxproj │ ├── L01_Camera.vcxproj.filters │ ├── L01_Camera.vcxproj.user │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L01_Camera.xcodeproj │ └── project.pbxproj │ └── L01_Camera_Prefix.pch ├── L02_BasicScene ├── assets │ └── shaders │ │ ├── plane_frag.glsl │ │ ├── plane_vert.glsl │ │ ├── sphere_frag.glsl │ │ └── sphere_vert.glsl ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ └── L02_BasicSceneApp.cpp ├── vc2013 │ ├── L02_BasicScene.sln │ ├── L02_BasicScene.vcxproj │ ├── L02_BasicScene.vcxproj.filters │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L02_BasicScene.xcodeproj │ └── project.pbxproj │ └── L02_BasicScene_Prefix.pch ├── L03_Lighting_I ├── assets │ └── shaders │ │ ├── plane_frag.glsl │ │ ├── plane_vert.glsl │ │ ├── sphere_frag.glsl │ │ └── sphere_vert.glsl ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ └── L03_Lighting_IApp.cpp ├── vc2013 │ ├── L03_Lighting_I.sln │ ├── L03_Lighting_I.vcxproj │ ├── L03_Lighting_I.vcxproj.filters │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L03_Lighting_I.xcodeproj │ └── project.pbxproj │ └── L03_Lighting_I_Prefix.pch ├── L04_Lighting_II ├── assets │ └── shaders │ │ ├── plane_frag.glsl │ │ ├── plane_vert.glsl │ │ ├── sphere_frag.glsl │ │ └── sphere_vert.glsl ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ └── L04_Lighting_IIApp.cpp ├── vc2013 │ ├── L04_Lighting_II.sln │ ├── L04_Lighting_II.vcxproj │ ├── L04_Lighting_II.vcxproj.filters │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L04_Lighting_II.xcodeproj │ └── project.pbxproj │ └── L04_Lighting_II_Prefix.pch ├── L05_Lighting_III ├── assets │ ├── shaders │ │ ├── plane_frag.glsl │ │ ├── plane_vert.glsl │ │ ├── shape_reflect_frag.glsl │ │ ├── shape_refract_frag.glsl │ │ ├── shape_vert.glsl │ │ ├── skybox_frag.glsl │ │ └── skybox_vert.glsl │ └── textures │ │ └── skybox.png ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ ├── L05_Lighting_IIIApp.cpp │ └── L05_Lighting_IIIApp.h ├── vc2013 │ ├── L05_Lighting_III.sln │ ├── L05_Lighting_III.vcxproj │ ├── L05_Lighting_III.vcxproj.filters │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L05_Lighting_III.xcodeproj │ └── project.pbxproj │ └── L05_Lighting_III_Prefix.pch ├── L06_Instancing ├── assets │ ├── shaders │ │ ├── shape_reflect_frag.glsl │ │ ├── shape_refract_frag.glsl │ │ ├── shape_vert.glsl │ │ ├── skybox_frag.glsl │ │ └── skybox_vert.glsl │ └── textures │ │ └── skybox.png ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ ├── L06_InstancingApp.cpp │ └── L06_InstancingApp.h ├── vc2013 │ ├── L06_Instancing.sln │ ├── L06_Instancing.vcxproj │ ├── L06_Instancing.vcxproj.filters │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L06_Instancing.xcodeproj │ └── project.pbxproj │ └── L06_Instancing_Prefix.pch ├── L07_Motion_I ├── assets │ ├── shaders │ │ ├── shape_reflect_frag.glsl │ │ ├── shape_refract_frag.glsl │ │ ├── shape_vert.glsl │ │ ├── skybox_frag.glsl │ │ └── skybox_vert.glsl │ └── textures │ │ └── skybox.png ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ ├── L07_Motion_IApp.cpp │ └── L07_Motion_IApp.h ├── vc2013 │ ├── L07_Motion_I.sln │ ├── L07_Motion_I.vcxproj │ ├── L07_Motion_I.vcxproj.filters │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L07_Motion_I.xcodeproj │ └── project.pbxproj │ └── L07_Motion_I_Prefix.pch ├── L08_Motion_II ├── assets │ ├── shaders │ │ ├── shape_reflect_frag.glsl │ │ ├── shape_refract_frag.glsl │ │ ├── shape_vert.glsl │ │ ├── skybox_frag.glsl │ │ └── skybox_vert.glsl │ └── textures │ │ └── skybox.png ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ ├── L08_Motion_IIApp.cpp │ └── L08_Motion_IIApp.h ├── vc2013 │ ├── L08_Motion_II.sln │ ├── L08_Motion_II.vcxproj │ ├── L08_Motion_II.vcxproj.filters │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L08_Motion_II.xcodeproj │ └── project.pbxproj │ └── L08_Motion_II_Prefix.pch ├── L09_Motion_III ├── assets │ ├── shaders │ │ ├── shape_reflect_frag.glsl │ │ ├── shape_refract_frag.glsl │ │ ├── shape_vert.glsl │ │ ├── skybox_frag.glsl │ │ └── skybox_vert.glsl │ └── textures │ │ └── skybox.png ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ ├── L09_Motion_IIIApp.cpp │ ├── L09_Motion_IIIApp.h │ └── Particle.h ├── vc2013 │ ├── L09_Motion_III.sln │ ├── L09_Motion_III.vcxproj │ ├── L09_Motion_III.vcxproj.filters │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L09_Motion_III.xcodeproj │ └── project.pbxproj │ └── L09_Motion_III_Prefix.pch ├── L10_FBO ├── assets │ ├── shaders │ │ ├── blur_frag.glsl │ │ ├── blur_vert.glsl │ │ ├── highpass_frag.glsl │ │ ├── passthru_vert.glsl │ │ ├── shape_reflect_frag.glsl │ │ ├── shape_refract_frag.glsl │ │ ├── shape_vert.glsl │ │ ├── skybox_frag.glsl │ │ └── skybox_vert.glsl │ └── textures │ │ └── skybox.png ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ ├── L10_FBOApp.cpp │ ├── L10_FBOApp.h │ └── Particle.h ├── vc2013 │ ├── L10_FBO.sln │ ├── L10_FBO.vcxproj │ ├── L10_FBO.vcxproj.filters │ └── Resources.rc └── xcode │ ├── Info.plist │ ├── L10_FBO.xcodeproj │ └── project.pbxproj │ └── L10_FBO_Prefix.pch ├── L11_Attributes ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── L11_AttributesApp.cpp └── vc2013 │ ├── L11_Attributes.sln │ ├── L11_Attributes.vcxproj │ ├── L11_Attributes.vcxproj.filters │ └── Resources.rc ├── LearnCinderGL.sln ├── README.md └── Solutions ├── L01_Ex1 ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── L01_Ex1App.cpp └── vc2013 │ ├── L01_Ex1.sln │ ├── L01_Ex1.vcxproj │ ├── L01_Ex1.vcxproj.filters │ └── Resources.rc ├── L01_Ex2 ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── L01_Ex2.cpp └── vc2013 │ ├── L01_Ex2.sln │ ├── L01_Ex2.vcxproj │ ├── L01_Ex2.vcxproj.filters │ └── Resources.rc ├── L01_Ex3 ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── L01_Ex3.cpp └── vc2013 │ ├── L01_Ex3.sln │ ├── L01_Ex3.vcxproj │ ├── L01_Ex3.vcxproj.filters │ └── Resources.rc ├── L02_Ex1 ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── L02_Ex1App.cpp └── vc2013 │ ├── L02_Ex1.sln │ ├── L02_Ex1.vcxproj │ ├── L02_Ex1.vcxproj.filters │ └── Resources.rc ├── L02_Ex2 ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── L01_Ex1App.cpp └── vc2013 │ ├── L02_Ex2.sln │ ├── L02_Ex2.vcxproj │ ├── L02_Ex2.vcxproj.filters │ └── Resources.rc ├── L02_Ex3 ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── L01_Ex1App.cpp └── vc2013 │ ├── L01_Ex1.sln │ ├── L01_Ex1.vcxproj │ ├── L01_Ex1.vcxproj.filters │ └── Resources.rc ├── L03_Ex1 ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── L03_Ex1.cpp └── vc2013 │ ├── L03_Ex1.sln │ ├── L03_Ex1.vcxproj │ ├── L03_Ex1.vcxproj.filters │ └── Resources.rc ├── L03_Ex2 ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── L03_Ex2.cpp └── vc2013 │ ├── L03_Ex2.sln │ ├── L03_Ex2.vcxproj │ ├── L03_Ex2.vcxproj.filters │ └── Resources.rc └── L03_Ex3 ├── include └── Resources.h ├── resources └── cinder_app_icon.ico ├── src └── L03_Ex3.cpp └── vc2013 ├── L03_Ex3.sln ├── L03_Ex3.vcxproj ├── L03_Ex3.vcxproj.filters └── Resources.rc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/.gitignore -------------------------------------------------------------------------------- /L01_Camera/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/include/Resources.h -------------------------------------------------------------------------------- /L01_Camera/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/resources/CinderApp.icns -------------------------------------------------------------------------------- /L01_Camera/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L01_Camera/src/L01_CameraApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/src/L01_CameraApp.cpp -------------------------------------------------------------------------------- /L01_Camera/vc2013/L01_Camera.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/vc2013/L01_Camera.sln -------------------------------------------------------------------------------- /L01_Camera/vc2013/L01_Camera.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/vc2013/L01_Camera.vcxproj -------------------------------------------------------------------------------- /L01_Camera/vc2013/L01_Camera.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/vc2013/L01_Camera.vcxproj.filters -------------------------------------------------------------------------------- /L01_Camera/vc2013/L01_Camera.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/vc2013/L01_Camera.vcxproj.user -------------------------------------------------------------------------------- /L01_Camera/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/vc2013/Resources.rc -------------------------------------------------------------------------------- /L01_Camera/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/xcode/Info.plist -------------------------------------------------------------------------------- /L01_Camera/xcode/L01_Camera.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/xcode/L01_Camera.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L01_Camera/xcode/L01_Camera_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L01_Camera/xcode/L01_Camera_Prefix.pch -------------------------------------------------------------------------------- /L02_BasicScene/assets/shaders/plane_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/assets/shaders/plane_frag.glsl -------------------------------------------------------------------------------- /L02_BasicScene/assets/shaders/plane_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/assets/shaders/plane_vert.glsl -------------------------------------------------------------------------------- /L02_BasicScene/assets/shaders/sphere_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/assets/shaders/sphere_frag.glsl -------------------------------------------------------------------------------- /L02_BasicScene/assets/shaders/sphere_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/assets/shaders/sphere_vert.glsl -------------------------------------------------------------------------------- /L02_BasicScene/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/include/Resources.h -------------------------------------------------------------------------------- /L02_BasicScene/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/resources/CinderApp.icns -------------------------------------------------------------------------------- /L02_BasicScene/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L02_BasicScene/src/L02_BasicSceneApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/src/L02_BasicSceneApp.cpp -------------------------------------------------------------------------------- /L02_BasicScene/vc2013/L02_BasicScene.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/vc2013/L02_BasicScene.sln -------------------------------------------------------------------------------- /L02_BasicScene/vc2013/L02_BasicScene.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/vc2013/L02_BasicScene.vcxproj -------------------------------------------------------------------------------- /L02_BasicScene/vc2013/L02_BasicScene.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/vc2013/L02_BasicScene.vcxproj.filters -------------------------------------------------------------------------------- /L02_BasicScene/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/vc2013/Resources.rc -------------------------------------------------------------------------------- /L02_BasicScene/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/xcode/Info.plist -------------------------------------------------------------------------------- /L02_BasicScene/xcode/L02_BasicScene.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/xcode/L02_BasicScene.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L02_BasicScene/xcode/L02_BasicScene_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L02_BasicScene/xcode/L02_BasicScene_Prefix.pch -------------------------------------------------------------------------------- /L03_Lighting_I/assets/shaders/plane_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/assets/shaders/plane_frag.glsl -------------------------------------------------------------------------------- /L03_Lighting_I/assets/shaders/plane_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/assets/shaders/plane_vert.glsl -------------------------------------------------------------------------------- /L03_Lighting_I/assets/shaders/sphere_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/assets/shaders/sphere_frag.glsl -------------------------------------------------------------------------------- /L03_Lighting_I/assets/shaders/sphere_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/assets/shaders/sphere_vert.glsl -------------------------------------------------------------------------------- /L03_Lighting_I/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/include/Resources.h -------------------------------------------------------------------------------- /L03_Lighting_I/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/resources/CinderApp.icns -------------------------------------------------------------------------------- /L03_Lighting_I/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L03_Lighting_I/src/L03_Lighting_IApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/src/L03_Lighting_IApp.cpp -------------------------------------------------------------------------------- /L03_Lighting_I/vc2013/L03_Lighting_I.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/vc2013/L03_Lighting_I.sln -------------------------------------------------------------------------------- /L03_Lighting_I/vc2013/L03_Lighting_I.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/vc2013/L03_Lighting_I.vcxproj -------------------------------------------------------------------------------- /L03_Lighting_I/vc2013/L03_Lighting_I.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/vc2013/L03_Lighting_I.vcxproj.filters -------------------------------------------------------------------------------- /L03_Lighting_I/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/vc2013/Resources.rc -------------------------------------------------------------------------------- /L03_Lighting_I/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/xcode/Info.plist -------------------------------------------------------------------------------- /L03_Lighting_I/xcode/L03_Lighting_I.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/xcode/L03_Lighting_I.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L03_Lighting_I/xcode/L03_Lighting_I_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L03_Lighting_I/xcode/L03_Lighting_I_Prefix.pch -------------------------------------------------------------------------------- /L04_Lighting_II/assets/shaders/plane_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/assets/shaders/plane_frag.glsl -------------------------------------------------------------------------------- /L04_Lighting_II/assets/shaders/plane_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/assets/shaders/plane_vert.glsl -------------------------------------------------------------------------------- /L04_Lighting_II/assets/shaders/sphere_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/assets/shaders/sphere_frag.glsl -------------------------------------------------------------------------------- /L04_Lighting_II/assets/shaders/sphere_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/assets/shaders/sphere_vert.glsl -------------------------------------------------------------------------------- /L04_Lighting_II/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/include/Resources.h -------------------------------------------------------------------------------- /L04_Lighting_II/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/resources/CinderApp.icns -------------------------------------------------------------------------------- /L04_Lighting_II/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L04_Lighting_II/src/L04_Lighting_IIApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/src/L04_Lighting_IIApp.cpp -------------------------------------------------------------------------------- /L04_Lighting_II/vc2013/L04_Lighting_II.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/vc2013/L04_Lighting_II.sln -------------------------------------------------------------------------------- /L04_Lighting_II/vc2013/L04_Lighting_II.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/vc2013/L04_Lighting_II.vcxproj -------------------------------------------------------------------------------- /L04_Lighting_II/vc2013/L04_Lighting_II.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/vc2013/L04_Lighting_II.vcxproj.filters -------------------------------------------------------------------------------- /L04_Lighting_II/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/vc2013/Resources.rc -------------------------------------------------------------------------------- /L04_Lighting_II/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/xcode/Info.plist -------------------------------------------------------------------------------- /L04_Lighting_II/xcode/L04_Lighting_II.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/xcode/L04_Lighting_II.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L04_Lighting_II/xcode/L04_Lighting_II_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L04_Lighting_II/xcode/L04_Lighting_II_Prefix.pch -------------------------------------------------------------------------------- /L05_Lighting_III/assets/shaders/plane_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/assets/shaders/plane_frag.glsl -------------------------------------------------------------------------------- /L05_Lighting_III/assets/shaders/plane_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/assets/shaders/plane_vert.glsl -------------------------------------------------------------------------------- /L05_Lighting_III/assets/shaders/shape_reflect_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/assets/shaders/shape_reflect_frag.glsl -------------------------------------------------------------------------------- /L05_Lighting_III/assets/shaders/shape_refract_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/assets/shaders/shape_refract_frag.glsl -------------------------------------------------------------------------------- /L05_Lighting_III/assets/shaders/shape_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/assets/shaders/shape_vert.glsl -------------------------------------------------------------------------------- /L05_Lighting_III/assets/shaders/skybox_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/assets/shaders/skybox_frag.glsl -------------------------------------------------------------------------------- /L05_Lighting_III/assets/shaders/skybox_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/assets/shaders/skybox_vert.glsl -------------------------------------------------------------------------------- /L05_Lighting_III/assets/textures/skybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/assets/textures/skybox.png -------------------------------------------------------------------------------- /L05_Lighting_III/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/include/Resources.h -------------------------------------------------------------------------------- /L05_Lighting_III/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/resources/CinderApp.icns -------------------------------------------------------------------------------- /L05_Lighting_III/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L05_Lighting_III/src/L05_Lighting_IIIApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/src/L05_Lighting_IIIApp.cpp -------------------------------------------------------------------------------- /L05_Lighting_III/src/L05_Lighting_IIIApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/src/L05_Lighting_IIIApp.h -------------------------------------------------------------------------------- /L05_Lighting_III/vc2013/L05_Lighting_III.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/vc2013/L05_Lighting_III.sln -------------------------------------------------------------------------------- /L05_Lighting_III/vc2013/L05_Lighting_III.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/vc2013/L05_Lighting_III.vcxproj -------------------------------------------------------------------------------- /L05_Lighting_III/vc2013/L05_Lighting_III.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/vc2013/L05_Lighting_III.vcxproj.filters -------------------------------------------------------------------------------- /L05_Lighting_III/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/vc2013/Resources.rc -------------------------------------------------------------------------------- /L05_Lighting_III/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/xcode/Info.plist -------------------------------------------------------------------------------- /L05_Lighting_III/xcode/L05_Lighting_III.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/xcode/L05_Lighting_III.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L05_Lighting_III/xcode/L05_Lighting_III_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L05_Lighting_III/xcode/L05_Lighting_III_Prefix.pch -------------------------------------------------------------------------------- /L06_Instancing/assets/shaders/shape_reflect_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/assets/shaders/shape_reflect_frag.glsl -------------------------------------------------------------------------------- /L06_Instancing/assets/shaders/shape_refract_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/assets/shaders/shape_refract_frag.glsl -------------------------------------------------------------------------------- /L06_Instancing/assets/shaders/shape_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/assets/shaders/shape_vert.glsl -------------------------------------------------------------------------------- /L06_Instancing/assets/shaders/skybox_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/assets/shaders/skybox_frag.glsl -------------------------------------------------------------------------------- /L06_Instancing/assets/shaders/skybox_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/assets/shaders/skybox_vert.glsl -------------------------------------------------------------------------------- /L06_Instancing/assets/textures/skybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/assets/textures/skybox.png -------------------------------------------------------------------------------- /L06_Instancing/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/include/Resources.h -------------------------------------------------------------------------------- /L06_Instancing/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/resources/CinderApp.icns -------------------------------------------------------------------------------- /L06_Instancing/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L06_Instancing/src/L06_InstancingApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/src/L06_InstancingApp.cpp -------------------------------------------------------------------------------- /L06_Instancing/src/L06_InstancingApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/src/L06_InstancingApp.h -------------------------------------------------------------------------------- /L06_Instancing/vc2013/L06_Instancing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/vc2013/L06_Instancing.sln -------------------------------------------------------------------------------- /L06_Instancing/vc2013/L06_Instancing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/vc2013/L06_Instancing.vcxproj -------------------------------------------------------------------------------- /L06_Instancing/vc2013/L06_Instancing.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/vc2013/L06_Instancing.vcxproj.filters -------------------------------------------------------------------------------- /L06_Instancing/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/vc2013/Resources.rc -------------------------------------------------------------------------------- /L06_Instancing/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/xcode/Info.plist -------------------------------------------------------------------------------- /L06_Instancing/xcode/L06_Instancing.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/xcode/L06_Instancing.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L06_Instancing/xcode/L06_Instancing_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L06_Instancing/xcode/L06_Instancing_Prefix.pch -------------------------------------------------------------------------------- /L07_Motion_I/assets/shaders/shape_reflect_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/assets/shaders/shape_reflect_frag.glsl -------------------------------------------------------------------------------- /L07_Motion_I/assets/shaders/shape_refract_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/assets/shaders/shape_refract_frag.glsl -------------------------------------------------------------------------------- /L07_Motion_I/assets/shaders/shape_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/assets/shaders/shape_vert.glsl -------------------------------------------------------------------------------- /L07_Motion_I/assets/shaders/skybox_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/assets/shaders/skybox_frag.glsl -------------------------------------------------------------------------------- /L07_Motion_I/assets/shaders/skybox_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/assets/shaders/skybox_vert.glsl -------------------------------------------------------------------------------- /L07_Motion_I/assets/textures/skybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/assets/textures/skybox.png -------------------------------------------------------------------------------- /L07_Motion_I/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/include/Resources.h -------------------------------------------------------------------------------- /L07_Motion_I/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/resources/CinderApp.icns -------------------------------------------------------------------------------- /L07_Motion_I/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L07_Motion_I/src/L07_Motion_IApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/src/L07_Motion_IApp.cpp -------------------------------------------------------------------------------- /L07_Motion_I/src/L07_Motion_IApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/src/L07_Motion_IApp.h -------------------------------------------------------------------------------- /L07_Motion_I/vc2013/L07_Motion_I.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/vc2013/L07_Motion_I.sln -------------------------------------------------------------------------------- /L07_Motion_I/vc2013/L07_Motion_I.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/vc2013/L07_Motion_I.vcxproj -------------------------------------------------------------------------------- /L07_Motion_I/vc2013/L07_Motion_I.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/vc2013/L07_Motion_I.vcxproj.filters -------------------------------------------------------------------------------- /L07_Motion_I/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/vc2013/Resources.rc -------------------------------------------------------------------------------- /L07_Motion_I/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/xcode/Info.plist -------------------------------------------------------------------------------- /L07_Motion_I/xcode/L07_Motion_I.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/xcode/L07_Motion_I.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L07_Motion_I/xcode/L07_Motion_I_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L07_Motion_I/xcode/L07_Motion_I_Prefix.pch -------------------------------------------------------------------------------- /L08_Motion_II/assets/shaders/shape_reflect_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/assets/shaders/shape_reflect_frag.glsl -------------------------------------------------------------------------------- /L08_Motion_II/assets/shaders/shape_refract_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/assets/shaders/shape_refract_frag.glsl -------------------------------------------------------------------------------- /L08_Motion_II/assets/shaders/shape_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/assets/shaders/shape_vert.glsl -------------------------------------------------------------------------------- /L08_Motion_II/assets/shaders/skybox_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/assets/shaders/skybox_frag.glsl -------------------------------------------------------------------------------- /L08_Motion_II/assets/shaders/skybox_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/assets/shaders/skybox_vert.glsl -------------------------------------------------------------------------------- /L08_Motion_II/assets/textures/skybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/assets/textures/skybox.png -------------------------------------------------------------------------------- /L08_Motion_II/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/include/Resources.h -------------------------------------------------------------------------------- /L08_Motion_II/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/resources/CinderApp.icns -------------------------------------------------------------------------------- /L08_Motion_II/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L08_Motion_II/src/L08_Motion_IIApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/src/L08_Motion_IIApp.cpp -------------------------------------------------------------------------------- /L08_Motion_II/src/L08_Motion_IIApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/src/L08_Motion_IIApp.h -------------------------------------------------------------------------------- /L08_Motion_II/vc2013/L08_Motion_II.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/vc2013/L08_Motion_II.sln -------------------------------------------------------------------------------- /L08_Motion_II/vc2013/L08_Motion_II.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/vc2013/L08_Motion_II.vcxproj -------------------------------------------------------------------------------- /L08_Motion_II/vc2013/L08_Motion_II.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/vc2013/L08_Motion_II.vcxproj.filters -------------------------------------------------------------------------------- /L08_Motion_II/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/vc2013/Resources.rc -------------------------------------------------------------------------------- /L08_Motion_II/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/xcode/Info.plist -------------------------------------------------------------------------------- /L08_Motion_II/xcode/L08_Motion_II.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/xcode/L08_Motion_II.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L08_Motion_II/xcode/L08_Motion_II_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L08_Motion_II/xcode/L08_Motion_II_Prefix.pch -------------------------------------------------------------------------------- /L09_Motion_III/assets/shaders/shape_reflect_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/assets/shaders/shape_reflect_frag.glsl -------------------------------------------------------------------------------- /L09_Motion_III/assets/shaders/shape_refract_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/assets/shaders/shape_refract_frag.glsl -------------------------------------------------------------------------------- /L09_Motion_III/assets/shaders/shape_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/assets/shaders/shape_vert.glsl -------------------------------------------------------------------------------- /L09_Motion_III/assets/shaders/skybox_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/assets/shaders/skybox_frag.glsl -------------------------------------------------------------------------------- /L09_Motion_III/assets/shaders/skybox_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/assets/shaders/skybox_vert.glsl -------------------------------------------------------------------------------- /L09_Motion_III/assets/textures/skybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/assets/textures/skybox.png -------------------------------------------------------------------------------- /L09_Motion_III/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/include/Resources.h -------------------------------------------------------------------------------- /L09_Motion_III/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/resources/CinderApp.icns -------------------------------------------------------------------------------- /L09_Motion_III/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L09_Motion_III/src/L09_Motion_IIIApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/src/L09_Motion_IIIApp.cpp -------------------------------------------------------------------------------- /L09_Motion_III/src/L09_Motion_IIIApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/src/L09_Motion_IIIApp.h -------------------------------------------------------------------------------- /L09_Motion_III/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/src/Particle.h -------------------------------------------------------------------------------- /L09_Motion_III/vc2013/L09_Motion_III.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/vc2013/L09_Motion_III.sln -------------------------------------------------------------------------------- /L09_Motion_III/vc2013/L09_Motion_III.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/vc2013/L09_Motion_III.vcxproj -------------------------------------------------------------------------------- /L09_Motion_III/vc2013/L09_Motion_III.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/vc2013/L09_Motion_III.vcxproj.filters -------------------------------------------------------------------------------- /L09_Motion_III/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/vc2013/Resources.rc -------------------------------------------------------------------------------- /L09_Motion_III/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/xcode/Info.plist -------------------------------------------------------------------------------- /L09_Motion_III/xcode/L09_Motion_III.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/xcode/L09_Motion_III.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L09_Motion_III/xcode/L09_Motion_III_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L09_Motion_III/xcode/L09_Motion_III_Prefix.pch -------------------------------------------------------------------------------- /L10_FBO/assets/shaders/blur_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/shaders/blur_frag.glsl -------------------------------------------------------------------------------- /L10_FBO/assets/shaders/blur_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/shaders/blur_vert.glsl -------------------------------------------------------------------------------- /L10_FBO/assets/shaders/highpass_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/shaders/highpass_frag.glsl -------------------------------------------------------------------------------- /L10_FBO/assets/shaders/passthru_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/shaders/passthru_vert.glsl -------------------------------------------------------------------------------- /L10_FBO/assets/shaders/shape_reflect_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/shaders/shape_reflect_frag.glsl -------------------------------------------------------------------------------- /L10_FBO/assets/shaders/shape_refract_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/shaders/shape_refract_frag.glsl -------------------------------------------------------------------------------- /L10_FBO/assets/shaders/shape_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/shaders/shape_vert.glsl -------------------------------------------------------------------------------- /L10_FBO/assets/shaders/skybox_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/shaders/skybox_frag.glsl -------------------------------------------------------------------------------- /L10_FBO/assets/shaders/skybox_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/shaders/skybox_vert.glsl -------------------------------------------------------------------------------- /L10_FBO/assets/textures/skybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/assets/textures/skybox.png -------------------------------------------------------------------------------- /L10_FBO/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/include/Resources.h -------------------------------------------------------------------------------- /L10_FBO/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/resources/CinderApp.icns -------------------------------------------------------------------------------- /L10_FBO/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L10_FBO/src/L10_FBOApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/src/L10_FBOApp.cpp -------------------------------------------------------------------------------- /L10_FBO/src/L10_FBOApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/src/L10_FBOApp.h -------------------------------------------------------------------------------- /L10_FBO/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/src/Particle.h -------------------------------------------------------------------------------- /L10_FBO/vc2013/L10_FBO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/vc2013/L10_FBO.sln -------------------------------------------------------------------------------- /L10_FBO/vc2013/L10_FBO.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/vc2013/L10_FBO.vcxproj -------------------------------------------------------------------------------- /L10_FBO/vc2013/L10_FBO.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/vc2013/L10_FBO.vcxproj.filters -------------------------------------------------------------------------------- /L10_FBO/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/vc2013/Resources.rc -------------------------------------------------------------------------------- /L10_FBO/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/xcode/Info.plist -------------------------------------------------------------------------------- /L10_FBO/xcode/L10_FBO.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/xcode/L10_FBO.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /L10_FBO/xcode/L10_FBO_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L10_FBO/xcode/L10_FBO_Prefix.pch -------------------------------------------------------------------------------- /L11_Attributes/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L11_Attributes/include/Resources.h -------------------------------------------------------------------------------- /L11_Attributes/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L11_Attributes/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /L11_Attributes/src/L11_AttributesApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L11_Attributes/src/L11_AttributesApp.cpp -------------------------------------------------------------------------------- /L11_Attributes/vc2013/L11_Attributes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L11_Attributes/vc2013/L11_Attributes.sln -------------------------------------------------------------------------------- /L11_Attributes/vc2013/L11_Attributes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L11_Attributes/vc2013/L11_Attributes.vcxproj -------------------------------------------------------------------------------- /L11_Attributes/vc2013/L11_Attributes.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L11_Attributes/vc2013/L11_Attributes.vcxproj.filters -------------------------------------------------------------------------------- /L11_Attributes/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/L11_Attributes/vc2013/Resources.rc -------------------------------------------------------------------------------- /LearnCinderGL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/LearnCinderGL.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/README.md -------------------------------------------------------------------------------- /Solutions/L01_Ex1/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex1/include/Resources.h -------------------------------------------------------------------------------- /Solutions/L01_Ex1/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex1/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Solutions/L01_Ex1/src/L01_Ex1App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex1/src/L01_Ex1App.cpp -------------------------------------------------------------------------------- /Solutions/L01_Ex1/vc2013/L01_Ex1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex1/vc2013/L01_Ex1.sln -------------------------------------------------------------------------------- /Solutions/L01_Ex1/vc2013/L01_Ex1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex1/vc2013/L01_Ex1.vcxproj -------------------------------------------------------------------------------- /Solutions/L01_Ex1/vc2013/L01_Ex1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex1/vc2013/L01_Ex1.vcxproj.filters -------------------------------------------------------------------------------- /Solutions/L01_Ex1/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex1/vc2013/Resources.rc -------------------------------------------------------------------------------- /Solutions/L01_Ex2/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex2/include/Resources.h -------------------------------------------------------------------------------- /Solutions/L01_Ex2/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex2/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Solutions/L01_Ex2/src/L01_Ex2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex2/src/L01_Ex2.cpp -------------------------------------------------------------------------------- /Solutions/L01_Ex2/vc2013/L01_Ex2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex2/vc2013/L01_Ex2.sln -------------------------------------------------------------------------------- /Solutions/L01_Ex2/vc2013/L01_Ex2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex2/vc2013/L01_Ex2.vcxproj -------------------------------------------------------------------------------- /Solutions/L01_Ex2/vc2013/L01_Ex2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex2/vc2013/L01_Ex2.vcxproj.filters -------------------------------------------------------------------------------- /Solutions/L01_Ex2/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex2/vc2013/Resources.rc -------------------------------------------------------------------------------- /Solutions/L01_Ex3/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex3/include/Resources.h -------------------------------------------------------------------------------- /Solutions/L01_Ex3/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex3/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Solutions/L01_Ex3/src/L01_Ex3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex3/src/L01_Ex3.cpp -------------------------------------------------------------------------------- /Solutions/L01_Ex3/vc2013/L01_Ex3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex3/vc2013/L01_Ex3.sln -------------------------------------------------------------------------------- /Solutions/L01_Ex3/vc2013/L01_Ex3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex3/vc2013/L01_Ex3.vcxproj -------------------------------------------------------------------------------- /Solutions/L01_Ex3/vc2013/L01_Ex3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex3/vc2013/L01_Ex3.vcxproj.filters -------------------------------------------------------------------------------- /Solutions/L01_Ex3/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L01_Ex3/vc2013/Resources.rc -------------------------------------------------------------------------------- /Solutions/L02_Ex1/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex1/include/Resources.h -------------------------------------------------------------------------------- /Solutions/L02_Ex1/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex1/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Solutions/L02_Ex1/src/L02_Ex1App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex1/src/L02_Ex1App.cpp -------------------------------------------------------------------------------- /Solutions/L02_Ex1/vc2013/L02_Ex1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex1/vc2013/L02_Ex1.sln -------------------------------------------------------------------------------- /Solutions/L02_Ex1/vc2013/L02_Ex1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex1/vc2013/L02_Ex1.vcxproj -------------------------------------------------------------------------------- /Solutions/L02_Ex1/vc2013/L02_Ex1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex1/vc2013/L02_Ex1.vcxproj.filters -------------------------------------------------------------------------------- /Solutions/L02_Ex1/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex1/vc2013/Resources.rc -------------------------------------------------------------------------------- /Solutions/L02_Ex2/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex2/include/Resources.h -------------------------------------------------------------------------------- /Solutions/L02_Ex2/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex2/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Solutions/L02_Ex2/src/L01_Ex1App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex2/src/L01_Ex1App.cpp -------------------------------------------------------------------------------- /Solutions/L02_Ex2/vc2013/L02_Ex2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex2/vc2013/L02_Ex2.sln -------------------------------------------------------------------------------- /Solutions/L02_Ex2/vc2013/L02_Ex2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex2/vc2013/L02_Ex2.vcxproj -------------------------------------------------------------------------------- /Solutions/L02_Ex2/vc2013/L02_Ex2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex2/vc2013/L02_Ex2.vcxproj.filters -------------------------------------------------------------------------------- /Solutions/L02_Ex2/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex2/vc2013/Resources.rc -------------------------------------------------------------------------------- /Solutions/L02_Ex3/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex3/include/Resources.h -------------------------------------------------------------------------------- /Solutions/L02_Ex3/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex3/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Solutions/L02_Ex3/src/L01_Ex1App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex3/src/L01_Ex1App.cpp -------------------------------------------------------------------------------- /Solutions/L02_Ex3/vc2013/L01_Ex1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex3/vc2013/L01_Ex1.sln -------------------------------------------------------------------------------- /Solutions/L02_Ex3/vc2013/L01_Ex1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex3/vc2013/L01_Ex1.vcxproj -------------------------------------------------------------------------------- /Solutions/L02_Ex3/vc2013/L01_Ex1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex3/vc2013/L01_Ex1.vcxproj.filters -------------------------------------------------------------------------------- /Solutions/L02_Ex3/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L02_Ex3/vc2013/Resources.rc -------------------------------------------------------------------------------- /Solutions/L03_Ex1/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex1/include/Resources.h -------------------------------------------------------------------------------- /Solutions/L03_Ex1/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex1/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Solutions/L03_Ex1/src/L03_Ex1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex1/src/L03_Ex1.cpp -------------------------------------------------------------------------------- /Solutions/L03_Ex1/vc2013/L03_Ex1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex1/vc2013/L03_Ex1.sln -------------------------------------------------------------------------------- /Solutions/L03_Ex1/vc2013/L03_Ex1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex1/vc2013/L03_Ex1.vcxproj -------------------------------------------------------------------------------- /Solutions/L03_Ex1/vc2013/L03_Ex1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex1/vc2013/L03_Ex1.vcxproj.filters -------------------------------------------------------------------------------- /Solutions/L03_Ex1/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex1/vc2013/Resources.rc -------------------------------------------------------------------------------- /Solutions/L03_Ex2/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex2/include/Resources.h -------------------------------------------------------------------------------- /Solutions/L03_Ex2/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex2/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Solutions/L03_Ex2/src/L03_Ex2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex2/src/L03_Ex2.cpp -------------------------------------------------------------------------------- /Solutions/L03_Ex2/vc2013/L03_Ex2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex2/vc2013/L03_Ex2.sln -------------------------------------------------------------------------------- /Solutions/L03_Ex2/vc2013/L03_Ex2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex2/vc2013/L03_Ex2.vcxproj -------------------------------------------------------------------------------- /Solutions/L03_Ex2/vc2013/L03_Ex2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex2/vc2013/L03_Ex2.vcxproj.filters -------------------------------------------------------------------------------- /Solutions/L03_Ex2/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex2/vc2013/Resources.rc -------------------------------------------------------------------------------- /Solutions/L03_Ex3/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex3/include/Resources.h -------------------------------------------------------------------------------- /Solutions/L03_Ex3/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex3/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Solutions/L03_Ex3/src/L03_Ex3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex3/src/L03_Ex3.cpp -------------------------------------------------------------------------------- /Solutions/L03_Ex3/vc2013/L03_Ex3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex3/vc2013/L03_Ex3.sln -------------------------------------------------------------------------------- /Solutions/L03_Ex3/vc2013/L03_Ex3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex3/vc2013/L03_Ex3.vcxproj -------------------------------------------------------------------------------- /Solutions/L03_Ex3/vc2013/L03_Ex3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex3/vc2013/L03_Ex3.vcxproj.filters -------------------------------------------------------------------------------- /Solutions/L03_Ex3/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SethGibson/LearnCinderGL/HEAD/Solutions/L03_Ex3/vc2013/Resources.rc --------------------------------------------------------------------------------