├── .clang-format ├── .gitignore ├── All └── common │ ├── Pistons.cpp │ └── Pistons.h ├── AnalogClock ├── AnalogClock.exe ├── PREVIEW.png ├── README.md ├── include │ └── Resources.h ├── resources │ └── CinderApp.icns ├── src │ └── AnalogClockApp.cpp ├── vc2015 │ ├── AnalogClock.sln │ ├── AnalogClock.vcxproj │ ├── AnalogClock.vcxproj.filters │ ├── Resources.rc │ └── cinder_app_icon.ico └── xcode │ ├── AnalogClock.xcodeproj │ └── project.pbxproj │ └── AnalogClock_Prefix.pch ├── AudioVisualizer ├── AudioVisualizer.exe ├── PREVIEW.png ├── README.md ├── assets │ └── shaders │ │ ├── spectrum.frag │ │ └── spectrum.vert ├── fmodex.dll ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ └── AudioVisualizerApp.cpp ├── vc2015 │ ├── AudioVisualizer.sln │ ├── AudioVisualizer.vcxproj │ ├── AudioVisualizer.vcxproj.filters │ └── Resources.rc └── xcode │ ├── AudioVisualizer.xcodeproj │ └── project.pbxproj │ └── AudioVisualizer_Prefix.pch ├── BloomingNeon ├── BloomingNeon.exe ├── PREVIEW.png ├── README.md ├── assets │ ├── arrows.png │ ├── blur.frag │ ├── blur.vert │ ├── phong.frag │ ├── phong.vert │ ├── space_frigate.msh │ ├── space_frigate_bump.jpg │ ├── space_frigate_color.jpg │ ├── space_frigate_illumination.jpg │ └── space_frigate_specular.jpg ├── include │ └── Resources.h ├── resources │ └── CinderApp.icns ├── src │ └── BloomingNeonApp.cpp ├── vc2015 │ ├── BloomingNeon.sln │ ├── BloomingNeon.vcxproj │ ├── BloomingNeon.vcxproj.filters │ ├── Resources.rc │ └── cinder_app_icon.ico └── xcode │ ├── BloomingNeon.xcodeproj │ └── project.pbxproj │ └── BloomingNeon_Prefix.pch ├── BouncingBalls ├── BouncingBalls.exe ├── PREVIEW.png ├── README.md ├── assets │ └── ball.png ├── include │ └── Resources.h ├── resources │ └── CinderApp.icns ├── src │ └── BouncingBallsApp.cpp ├── vc2015 │ ├── BouncingBalls.sln │ ├── BouncingBalls.vcxproj │ ├── BouncingBalls.vcxproj.filters │ ├── Resources.rc │ └── cinder_app_icon.ico └── xcode │ ├── BouncingBalls.xcodeproj │ └── project.pbxproj │ └── BouncingBalls_Prefix.pch ├── DepthOfField ├── DepthOfField.exe ├── PREVIEW.png ├── README.md ├── assets │ ├── blur.frag │ ├── blur.vert │ ├── clay.png │ ├── composite.frag │ ├── composite.vert │ ├── debug.frag │ ├── gold.png │ ├── instanced.vert │ ├── scene.frag │ └── single.vert ├── include │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ └── DepthOfFieldApp.cpp ├── vc2015 │ ├── DepthOfField.sln │ ├── DepthOfField.vcxproj │ ├── DepthOfField.vcxproj.filters │ └── Resources.rc └── xcode │ ├── DepthOfField.xcodeproj │ └── project.pbxproj │ ├── DepthOfField_Prefix.pch │ └── Info.plist ├── Dithering ├── assets │ ├── dither.frag │ └── dither.vert ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── DitherApp.cpp └── vc2015 │ ├── Dither.sln │ ├── Dither.vcxproj │ ├── Dither.vcxproj.filters │ └── Resources.rc ├── FOLDERS.jpg ├── FXAA ├── FXAA.exe ├── PREVIEW.png ├── README.md ├── assets │ ├── .clang-format │ ├── Fxaa3_11.h │ ├── arrow.png │ ├── fxaa.frag │ └── fxaa.vert ├── include │ ├── FXAA.h │ └── Resources.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ ├── FXAA.cpp │ └── FXAAApp.cpp ├── vc2015 │ ├── FXAA.sln │ ├── FXAA.vcxproj │ ├── FXAA.vcxproj.filters │ └── Resources.rc └── xcode │ ├── FXAA.xcodeproj │ └── project.pbxproj │ └── FXAA_Prefix.pch ├── FlickrImageViewer ├── FlickrImageViewer.exe ├── PREVIEW.png ├── README.md ├── include │ ├── Resources.h │ └── ph │ │ ├── .clang-format │ │ ├── ConcurrentDeque.h │ │ ├── ConcurrentMap.h │ │ ├── ConcurrentQueue.h │ │ ├── TextureStore.cpp │ │ └── TextureStore.h ├── src │ └── FlickrImageViewerApp.cpp └── vc2015 │ ├── FlickrImageViewer.sln │ ├── FlickrImageViewer.vcxproj │ ├── FlickrImageViewer.vcxproj.filters │ ├── Resources.rc │ └── cinder_app_icon.ico ├── GeometryShader ├── GeometryShader.exe ├── PREVIEW.png ├── README.md ├── assets │ ├── shaders │ │ ├── lines.frag │ │ ├── lines.vert │ │ ├── lines1.geom │ │ └── lines2.geom │ └── textures │ │ ├── help.png │ │ ├── pattern1.png │ │ └── pattern2.png ├── include │ └── Resources.h ├── src │ └── GeometryShaderApp.cpp └── vc2015 │ ├── GeometryShader.sln │ ├── GeometryShader.vcxproj │ ├── GeometryShader.vcxproj.filters │ ├── Resources.rc │ └── cinder_app_icon.ico ├── HexagonMirror ├── HexagonMirror.exe ├── PREVIEW.png ├── README.md ├── assets │ ├── hexagon.obj │ ├── phong.frag │ ├── phong.vert │ └── placeholder.png ├── include │ └── Resources.h ├── resources │ └── CinderApp.icns ├── src │ └── HexagonMirrorApp.cpp ├── vc2015 │ ├── HexagonMirror.sln │ ├── HexagonMirror.vcxproj │ ├── HexagonMirror.vcxproj.filters │ ├── Resources.rc │ └── cinder_app_icon.ico └── xcode │ ├── HexagonMirror.xcodeproj │ └── project.pbxproj │ └── HexagonMirror_Prefix.pch ├── OneWorldMultipleWindows ├── OneWorldMultipleWindows.exe ├── PREVIEW.png ├── README.md ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── OneWorldMultipleWindowsApp.cpp └── vc2015 │ ├── OneWorldMultipleWindows.sln │ ├── OneWorldMultipleWindows.vcxproj │ ├── OneWorldMultipleWindows.vcxproj.filters │ └── Resources.rc ├── PerspectiveWarping ├── PREVIEW.png ├── PerspectiveWarping.exe ├── README.md ├── assets │ └── USS Enterprise D TNG Season 1-2.jpg ├── include │ └── Resources.h ├── src │ └── PerspectiveWarpingApp.cpp └── vc2015 │ ├── PerspectiveWarping.sln │ ├── PerspectiveWarping.vcxproj │ ├── PerspectiveWarping.vcxproj.filters │ ├── Resources.rc │ └── cinder_app_icon.ico ├── PickingByColor ├── PREVIEW.png ├── PickingByColorApp.exe ├── README.md ├── assets │ ├── font │ │ ├── b2sq.ttf │ │ ├── b2sqol1.ttf │ │ ├── b2sqol2.ttf │ │ └── bend2squares.txt │ ├── models │ │ ├── pitcher.msh │ │ ├── pitcher.obj │ │ ├── watering_can.msh │ │ └── watering_can.obj │ └── shaders │ │ ├── phong.frag │ │ └── phong.vert ├── resources │ └── CinderApp.icns ├── src │ └── PickingByColorApp.cpp ├── vc2015 │ ├── PickingByColorApp.sln │ ├── PickingByColorApp.vcxproj │ └── PickingByColorApp.vcxproj.filters └── xcode │ ├── PickingByColor.xcodeproj │ └── project.pbxproj │ └── PickingByColor_Prefix.pch ├── PostProcessing ├── PREVIEW.png ├── PostProcessing.exe ├── README.md ├── assets │ ├── post_process.frag │ ├── post_process.vert │ └── test.png ├── include │ └── Resources.h ├── resources │ └── CinderApp.icns ├── src │ └── PostProcessingApp.cpp ├── vc2015 │ ├── PostProcessing.sln │ ├── PostProcessing.vcxproj │ ├── PostProcessing.vcxproj.filters │ ├── Resources.rc │ └── cinder_app_icon.ico └── xcode │ ├── PostProcessing.xcodeproj │ └── project.pbxproj │ └── PostProcessing_Prefix.pch ├── README.md ├── SMAA ├── PREVIEW.png ├── README.md ├── SMAA.exe ├── assets │ ├── SMAA.glsl │ ├── arrow.png │ ├── smaa1.frag │ ├── smaa1.vert │ ├── smaa2.frag │ ├── smaa2.vert │ ├── smaa3.frag │ └── smaa3.vert ├── include │ ├── AreaTex.h │ ├── Resources.h │ ├── SMAA.h │ ├── SearchTex.h │ └── Shader.h ├── resources │ ├── CinderApp.icns │ └── cinder_app_icon.ico ├── src │ ├── SMAA.cpp │ ├── SMAAApp.cpp │ └── Shader.cpp ├── vc2013 │ ├── Resources.rc │ ├── SMAA.sln │ ├── SMAA.vcxproj │ └── SMAA.vcxproj.filters └── xcode │ ├── SMAA.xcodeproj │ └── project.pbxproj │ └── SMAA_Prefix.pch ├── ShaderToy ├── PREVIEW.png ├── README.md ├── ShaderToy.exe ├── assets │ ├── bubbles.frag │ ├── clouds.frag │ ├── common │ │ ├── shadertoy.frag │ │ ├── shadertoy.inc │ │ └── shadertoy.vert │ ├── guts.frag │ ├── hell.frag │ ├── metrics.frag │ ├── portals.frag │ ├── presets │ │ ├── tex02.jpg │ │ ├── tex06.jpg │ │ ├── tex09.jpg │ │ └── tex16.png │ └── warping.frag ├── include │ └── Resources.h ├── resources │ └── cinder_app_icon.ico ├── src │ └── ShaderToyApp.cpp └── vc2015 │ ├── Resources.rc │ ├── ShaderToy.sln │ ├── ShaderToy.vcxproj │ └── ShaderToy.vcxproj.filters ├── SimpleSceneGraph ├── PREVIEW.png ├── README.md ├── SimpleSceneGraph.exe ├── include │ ├── Resources.h │ ├── license.txt │ └── nodes │ │ ├── Node.cpp │ │ └── Node.h ├── src │ ├── NodeRectangle.cpp │ ├── NodeRectangle.h │ └── SimpleSceneGraphApp.cpp └── vc2015 │ ├── Resources.rc │ ├── SimpleSceneGraph.sln │ ├── SimpleSceneGraph.vcxproj │ ├── SimpleSceneGraph.vcxproj.filters │ └── cinder_app_icon.ico ├── SimpleShader ├── PREVIEW.png ├── README.md ├── SimpleShader.exe ├── assets │ ├── bottom.jpg │ ├── shader.frag │ ├── shader.vert │ └── top.jpg ├── include │ └── Resources.h ├── src │ └── SimpleShaderApp.cpp └── vc2015 │ ├── Resources.rc │ ├── SimpleShader.sln │ ├── SimpleShader.vcxproj │ ├── SimpleShader.vcxproj.filters │ └── cinder_app_icon.ico ├── SmoothDisplacementMapping ├── PREVIEW.png ├── README.md ├── SmoothDisplacementMapping.exe ├── assets │ ├── background.frag │ ├── background.png │ ├── background.vert │ ├── displacement_map.frag │ ├── displacement_map.vert │ ├── mesh.frag │ ├── mesh.vert │ ├── normal_map.frag │ └── normal_map.vert ├── include │ └── Resources.h ├── src │ └── SmoothDisplacementMappingApp.cpp └── vc2015 │ ├── Resources.rc │ ├── SmoothDisplacementMapping.sln │ ├── SmoothDisplacementMapping.vcxproj │ ├── SmoothDisplacementMapping.vcxproj.filters │ └── cinder_app_icon.ico ├── Stars ├── PREVIEW.png ├── README.md ├── Stars.exe ├── assets │ ├── constellationlabels.cdb │ ├── constellations.cdb │ ├── constellations.cln │ ├── fonts │ │ ├── Ubuntu-BoldItalic.sdff │ │ ├── Ubuntu-BoldItalic.ttf │ │ ├── Ubuntu-LightItalic.sdff │ │ ├── Ubuntu-LightItalic.ttf │ │ ├── Ubuntu.txt │ │ ├── sdf.ttf │ │ └── sdf.txt │ ├── hygxyz.csv │ ├── labels.cdb │ ├── music │ │ └── README.md │ ├── shaders │ │ ├── common.glsl │ │ ├── cylindrical.frag │ │ ├── cylindrical.vert │ │ ├── halos.frag │ │ ├── halos.vert │ │ ├── labels.vert │ │ ├── stars.frag │ │ └── stars.vert │ ├── sound │ │ └── low_rumble_loop.mp3 │ ├── stars.cdb │ └── textures │ │ ├── background.jpg │ │ ├── background.url │ │ ├── constellations.jpg │ │ ├── corona.png │ │ ├── nova.png │ │ ├── particle.png │ │ ├── sparkle.png │ │ ├── star_glow.png │ │ └── sun.png ├── bin │ └── win32-visualStudio │ │ ├── ikpFlac.dll │ │ ├── ikpMP3.dll │ │ └── irrKlang.dll ├── ikpFlac.dll ├── ikpMP3.dll ├── include │ ├── .clang-format │ ├── Resources.h │ ├── ik_ESoundEngineOptions.h │ ├── ik_ESoundOutputDrivers.h │ ├── ik_EStreamModes.h │ ├── ik_IAudioRecorder.h │ ├── ik_IAudioStream.h │ ├── ik_IAudioStreamLoader.h │ ├── ik_IFileFactory.h │ ├── ik_IFileReader.h │ ├── ik_IRefCounted.h │ ├── ik_ISound.h │ ├── ik_ISoundDeviceList.h │ ├── ik_ISoundEffectControl.h │ ├── ik_ISoundEngine.h │ ├── ik_ISoundMixedOutputReceiver.h │ ├── ik_ISoundSource.h │ ├── ik_ISoundStopEventReceiver.h │ ├── ik_IVirtualRefCounted.h │ ├── ik_SAudioStreamFormat.h │ ├── ik_irrKlangTypes.h │ ├── ik_vec3d.h │ └── irrKlang.h ├── irrKlang.dll ├── libs │ └── msw │ │ └── irrKlang.lib ├── src │ ├── Background.cpp │ ├── Background.h │ ├── Cam.cpp │ ├── Cam.h │ ├── ConstellationArt.cpp │ ├── ConstellationArt.h │ ├── ConstellationLabels.cpp │ ├── ConstellationLabels.h │ ├── Constellations.cpp │ ├── Constellations.h │ ├── Conversions.cpp │ ├── Conversions.h │ ├── Grid.cpp │ ├── Grid.h │ ├── Labels.cpp │ ├── Labels.h │ ├── Stars.cpp │ ├── Stars.h │ ├── StarsApp.cpp │ ├── UserInterface.cpp │ └── UserInterface.h └── vc2015 │ ├── Resources.rc │ ├── Stars.sln │ ├── Stars.vcxproj │ ├── Stars.vcxproj.filters │ └── cinder_app_icon.ico ├── TextRendering ├── PREVIEW.png ├── README.md ├── TextRendering.exe ├── assets │ ├── fonts │ │ ├── Bubblegum Sans Regular.sdff │ │ ├── BubblegumSans │ │ │ ├── BubblegumSans-Regular.ttf │ │ │ ├── FONTLOG.txt │ │ │ └── OFL.txt │ │ ├── SDFont Readme.txt │ │ ├── SDFont.exe │ │ ├── Walter Turncoat Regular.sdff │ │ ├── Walter Turncoat │ │ │ ├── LICENSE.txt │ │ │ └── WalterTurncoat.ttf │ │ └── readme.txt │ └── text │ │ └── 345.txt ├── include │ ├── Resources.h │ ├── license.txt │ └── text │ │ ├── Font.cpp │ │ ├── Font.h │ │ ├── FontStore.cpp │ │ ├── FontStore.h │ │ ├── Text.cpp │ │ ├── Text.h │ │ ├── TextBox.cpp │ │ ├── TextBox.h │ │ ├── TextLabels.cpp │ │ └── TextLabels.h ├── src │ └── TextRenderingApp.cpp └── vc2015 │ ├── Resources.rc │ ├── TextRendering.sln │ ├── TextRendering.vcxproj │ ├── TextRendering.vcxproj.filters │ └── cinder_app_icon.ico ├── TransparentMesh ├── PREVIEW.png ├── README.md ├── TransparentMesh.exe ├── assets │ ├── background.png │ └── earth.png ├── include │ └── Resources.h ├── src │ └── TransparentMeshApp.cpp └── vc2013 │ ├── Resources.rc │ ├── TransparentMesh.sln │ ├── TransparentMesh.vcxproj │ ├── TransparentMesh.vcxproj.filters │ └── cinder_app_icon.ico └── formatter.bat /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /All/common/Pistons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/All/common/Pistons.cpp -------------------------------------------------------------------------------- /All/common/Pistons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/All/common/Pistons.h -------------------------------------------------------------------------------- /AnalogClock/AnalogClock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/AnalogClock.exe -------------------------------------------------------------------------------- /AnalogClock/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/PREVIEW.png -------------------------------------------------------------------------------- /AnalogClock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/README.md -------------------------------------------------------------------------------- /AnalogClock/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/include/Resources.h -------------------------------------------------------------------------------- /AnalogClock/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/resources/CinderApp.icns -------------------------------------------------------------------------------- /AnalogClock/src/AnalogClockApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/src/AnalogClockApp.cpp -------------------------------------------------------------------------------- /AnalogClock/vc2015/AnalogClock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/vc2015/AnalogClock.sln -------------------------------------------------------------------------------- /AnalogClock/vc2015/AnalogClock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/vc2015/AnalogClock.vcxproj -------------------------------------------------------------------------------- /AnalogClock/vc2015/AnalogClock.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/vc2015/AnalogClock.vcxproj.filters -------------------------------------------------------------------------------- /AnalogClock/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/vc2015/Resources.rc -------------------------------------------------------------------------------- /AnalogClock/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /AnalogClock/xcode/AnalogClock.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/xcode/AnalogClock.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnalogClock/xcode/AnalogClock_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AnalogClock/xcode/AnalogClock_Prefix.pch -------------------------------------------------------------------------------- /AudioVisualizer/AudioVisualizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/AudioVisualizer.exe -------------------------------------------------------------------------------- /AudioVisualizer/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/PREVIEW.png -------------------------------------------------------------------------------- /AudioVisualizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/README.md -------------------------------------------------------------------------------- /AudioVisualizer/assets/shaders/spectrum.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/assets/shaders/spectrum.frag -------------------------------------------------------------------------------- /AudioVisualizer/assets/shaders/spectrum.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/assets/shaders/spectrum.vert -------------------------------------------------------------------------------- /AudioVisualizer/fmodex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/fmodex.dll -------------------------------------------------------------------------------- /AudioVisualizer/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/include/Resources.h -------------------------------------------------------------------------------- /AudioVisualizer/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/resources/CinderApp.icns -------------------------------------------------------------------------------- /AudioVisualizer/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /AudioVisualizer/src/AudioVisualizerApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/src/AudioVisualizerApp.cpp -------------------------------------------------------------------------------- /AudioVisualizer/vc2015/AudioVisualizer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/vc2015/AudioVisualizer.sln -------------------------------------------------------------------------------- /AudioVisualizer/vc2015/AudioVisualizer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/vc2015/AudioVisualizer.vcxproj -------------------------------------------------------------------------------- /AudioVisualizer/vc2015/AudioVisualizer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/vc2015/AudioVisualizer.vcxproj.filters -------------------------------------------------------------------------------- /AudioVisualizer/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/vc2015/Resources.rc -------------------------------------------------------------------------------- /AudioVisualizer/xcode/AudioVisualizer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/xcode/AudioVisualizer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AudioVisualizer/xcode/AudioVisualizer_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/AudioVisualizer/xcode/AudioVisualizer_Prefix.pch -------------------------------------------------------------------------------- /BloomingNeon/BloomingNeon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/BloomingNeon.exe -------------------------------------------------------------------------------- /BloomingNeon/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/PREVIEW.png -------------------------------------------------------------------------------- /BloomingNeon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/README.md -------------------------------------------------------------------------------- /BloomingNeon/assets/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/arrows.png -------------------------------------------------------------------------------- /BloomingNeon/assets/blur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/blur.frag -------------------------------------------------------------------------------- /BloomingNeon/assets/blur.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/blur.vert -------------------------------------------------------------------------------- /BloomingNeon/assets/phong.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/phong.frag -------------------------------------------------------------------------------- /BloomingNeon/assets/phong.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/phong.vert -------------------------------------------------------------------------------- /BloomingNeon/assets/space_frigate.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/space_frigate.msh -------------------------------------------------------------------------------- /BloomingNeon/assets/space_frigate_bump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/space_frigate_bump.jpg -------------------------------------------------------------------------------- /BloomingNeon/assets/space_frigate_color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/space_frigate_color.jpg -------------------------------------------------------------------------------- /BloomingNeon/assets/space_frigate_illumination.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/space_frigate_illumination.jpg -------------------------------------------------------------------------------- /BloomingNeon/assets/space_frigate_specular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/assets/space_frigate_specular.jpg -------------------------------------------------------------------------------- /BloomingNeon/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/include/Resources.h -------------------------------------------------------------------------------- /BloomingNeon/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/resources/CinderApp.icns -------------------------------------------------------------------------------- /BloomingNeon/src/BloomingNeonApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/src/BloomingNeonApp.cpp -------------------------------------------------------------------------------- /BloomingNeon/vc2015/BloomingNeon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/vc2015/BloomingNeon.sln -------------------------------------------------------------------------------- /BloomingNeon/vc2015/BloomingNeon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/vc2015/BloomingNeon.vcxproj -------------------------------------------------------------------------------- /BloomingNeon/vc2015/BloomingNeon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/vc2015/BloomingNeon.vcxproj.filters -------------------------------------------------------------------------------- /BloomingNeon/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/vc2015/Resources.rc -------------------------------------------------------------------------------- /BloomingNeon/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /BloomingNeon/xcode/BloomingNeon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/xcode/BloomingNeon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BloomingNeon/xcode/BloomingNeon_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BloomingNeon/xcode/BloomingNeon_Prefix.pch -------------------------------------------------------------------------------- /BouncingBalls/BouncingBalls.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/BouncingBalls.exe -------------------------------------------------------------------------------- /BouncingBalls/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/PREVIEW.png -------------------------------------------------------------------------------- /BouncingBalls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/README.md -------------------------------------------------------------------------------- /BouncingBalls/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/assets/ball.png -------------------------------------------------------------------------------- /BouncingBalls/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/include/Resources.h -------------------------------------------------------------------------------- /BouncingBalls/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/resources/CinderApp.icns -------------------------------------------------------------------------------- /BouncingBalls/src/BouncingBallsApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/src/BouncingBallsApp.cpp -------------------------------------------------------------------------------- /BouncingBalls/vc2015/BouncingBalls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/vc2015/BouncingBalls.sln -------------------------------------------------------------------------------- /BouncingBalls/vc2015/BouncingBalls.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/vc2015/BouncingBalls.vcxproj -------------------------------------------------------------------------------- /BouncingBalls/vc2015/BouncingBalls.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/vc2015/BouncingBalls.vcxproj.filters -------------------------------------------------------------------------------- /BouncingBalls/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/vc2015/Resources.rc -------------------------------------------------------------------------------- /BouncingBalls/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /BouncingBalls/xcode/BouncingBalls.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/xcode/BouncingBalls.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BouncingBalls/xcode/BouncingBalls_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/BouncingBalls/xcode/BouncingBalls_Prefix.pch -------------------------------------------------------------------------------- /DepthOfField/DepthOfField.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/DepthOfField.exe -------------------------------------------------------------------------------- /DepthOfField/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/PREVIEW.png -------------------------------------------------------------------------------- /DepthOfField/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/README.md -------------------------------------------------------------------------------- /DepthOfField/assets/blur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/blur.frag -------------------------------------------------------------------------------- /DepthOfField/assets/blur.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/blur.vert -------------------------------------------------------------------------------- /DepthOfField/assets/clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/clay.png -------------------------------------------------------------------------------- /DepthOfField/assets/composite.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/composite.frag -------------------------------------------------------------------------------- /DepthOfField/assets/composite.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/composite.vert -------------------------------------------------------------------------------- /DepthOfField/assets/debug.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/debug.frag -------------------------------------------------------------------------------- /DepthOfField/assets/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/gold.png -------------------------------------------------------------------------------- /DepthOfField/assets/instanced.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/instanced.vert -------------------------------------------------------------------------------- /DepthOfField/assets/scene.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/scene.frag -------------------------------------------------------------------------------- /DepthOfField/assets/single.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/assets/single.vert -------------------------------------------------------------------------------- /DepthOfField/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/include/Resources.h -------------------------------------------------------------------------------- /DepthOfField/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/resources/CinderApp.icns -------------------------------------------------------------------------------- /DepthOfField/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /DepthOfField/src/DepthOfFieldApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/src/DepthOfFieldApp.cpp -------------------------------------------------------------------------------- /DepthOfField/vc2015/DepthOfField.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/vc2015/DepthOfField.sln -------------------------------------------------------------------------------- /DepthOfField/vc2015/DepthOfField.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/vc2015/DepthOfField.vcxproj -------------------------------------------------------------------------------- /DepthOfField/vc2015/DepthOfField.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/vc2015/DepthOfField.vcxproj.filters -------------------------------------------------------------------------------- /DepthOfField/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/vc2015/Resources.rc -------------------------------------------------------------------------------- /DepthOfField/xcode/DepthOfField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/xcode/DepthOfField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DepthOfField/xcode/DepthOfField_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/xcode/DepthOfField_Prefix.pch -------------------------------------------------------------------------------- /DepthOfField/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/DepthOfField/xcode/Info.plist -------------------------------------------------------------------------------- /Dithering/assets/dither.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Dithering/assets/dither.frag -------------------------------------------------------------------------------- /Dithering/assets/dither.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Dithering/assets/dither.vert -------------------------------------------------------------------------------- /Dithering/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Dithering/include/Resources.h -------------------------------------------------------------------------------- /Dithering/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Dithering/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /Dithering/src/DitherApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Dithering/src/DitherApp.cpp -------------------------------------------------------------------------------- /Dithering/vc2015/Dither.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Dithering/vc2015/Dither.sln -------------------------------------------------------------------------------- /Dithering/vc2015/Dither.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Dithering/vc2015/Dither.vcxproj -------------------------------------------------------------------------------- /Dithering/vc2015/Dither.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Dithering/vc2015/Dither.vcxproj.filters -------------------------------------------------------------------------------- /Dithering/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Dithering/vc2015/Resources.rc -------------------------------------------------------------------------------- /FOLDERS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FOLDERS.jpg -------------------------------------------------------------------------------- /FXAA/FXAA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/FXAA.exe -------------------------------------------------------------------------------- /FXAA/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/PREVIEW.png -------------------------------------------------------------------------------- /FXAA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/README.md -------------------------------------------------------------------------------- /FXAA/assets/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | ... 4 | -------------------------------------------------------------------------------- /FXAA/assets/Fxaa3_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/assets/Fxaa3_11.h -------------------------------------------------------------------------------- /FXAA/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/assets/arrow.png -------------------------------------------------------------------------------- /FXAA/assets/fxaa.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/assets/fxaa.frag -------------------------------------------------------------------------------- /FXAA/assets/fxaa.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/assets/fxaa.vert -------------------------------------------------------------------------------- /FXAA/include/FXAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/include/FXAA.h -------------------------------------------------------------------------------- /FXAA/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/include/Resources.h -------------------------------------------------------------------------------- /FXAA/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/resources/CinderApp.icns -------------------------------------------------------------------------------- /FXAA/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /FXAA/src/FXAA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/src/FXAA.cpp -------------------------------------------------------------------------------- /FXAA/src/FXAAApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/src/FXAAApp.cpp -------------------------------------------------------------------------------- /FXAA/vc2015/FXAA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/vc2015/FXAA.sln -------------------------------------------------------------------------------- /FXAA/vc2015/FXAA.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/vc2015/FXAA.vcxproj -------------------------------------------------------------------------------- /FXAA/vc2015/FXAA.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/vc2015/FXAA.vcxproj.filters -------------------------------------------------------------------------------- /FXAA/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/vc2015/Resources.rc -------------------------------------------------------------------------------- /FXAA/xcode/FXAA.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/xcode/FXAA.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FXAA/xcode/FXAA_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FXAA/xcode/FXAA_Prefix.pch -------------------------------------------------------------------------------- /FlickrImageViewer/FlickrImageViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/FlickrImageViewer.exe -------------------------------------------------------------------------------- /FlickrImageViewer/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/PREVIEW.png -------------------------------------------------------------------------------- /FlickrImageViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/README.md -------------------------------------------------------------------------------- /FlickrImageViewer/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/include/Resources.h -------------------------------------------------------------------------------- /FlickrImageViewer/include/ph/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/include/ph/.clang-format -------------------------------------------------------------------------------- /FlickrImageViewer/include/ph/ConcurrentDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/include/ph/ConcurrentDeque.h -------------------------------------------------------------------------------- /FlickrImageViewer/include/ph/ConcurrentMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/include/ph/ConcurrentMap.h -------------------------------------------------------------------------------- /FlickrImageViewer/include/ph/ConcurrentQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/include/ph/ConcurrentQueue.h -------------------------------------------------------------------------------- /FlickrImageViewer/include/ph/TextureStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/include/ph/TextureStore.cpp -------------------------------------------------------------------------------- /FlickrImageViewer/include/ph/TextureStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/include/ph/TextureStore.h -------------------------------------------------------------------------------- /FlickrImageViewer/src/FlickrImageViewerApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/src/FlickrImageViewerApp.cpp -------------------------------------------------------------------------------- /FlickrImageViewer/vc2015/FlickrImageViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/vc2015/FlickrImageViewer.sln -------------------------------------------------------------------------------- /FlickrImageViewer/vc2015/FlickrImageViewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/vc2015/FlickrImageViewer.vcxproj -------------------------------------------------------------------------------- /FlickrImageViewer/vc2015/FlickrImageViewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/vc2015/FlickrImageViewer.vcxproj.filters -------------------------------------------------------------------------------- /FlickrImageViewer/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/vc2015/Resources.rc -------------------------------------------------------------------------------- /FlickrImageViewer/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/FlickrImageViewer/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /GeometryShader/GeometryShader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/GeometryShader.exe -------------------------------------------------------------------------------- /GeometryShader/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/PREVIEW.png -------------------------------------------------------------------------------- /GeometryShader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/README.md -------------------------------------------------------------------------------- /GeometryShader/assets/shaders/lines.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/assets/shaders/lines.frag -------------------------------------------------------------------------------- /GeometryShader/assets/shaders/lines.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/assets/shaders/lines.vert -------------------------------------------------------------------------------- /GeometryShader/assets/shaders/lines1.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/assets/shaders/lines1.geom -------------------------------------------------------------------------------- /GeometryShader/assets/shaders/lines2.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/assets/shaders/lines2.geom -------------------------------------------------------------------------------- /GeometryShader/assets/textures/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/assets/textures/help.png -------------------------------------------------------------------------------- /GeometryShader/assets/textures/pattern1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/assets/textures/pattern1.png -------------------------------------------------------------------------------- /GeometryShader/assets/textures/pattern2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/assets/textures/pattern2.png -------------------------------------------------------------------------------- /GeometryShader/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/include/Resources.h -------------------------------------------------------------------------------- /GeometryShader/src/GeometryShaderApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/src/GeometryShaderApp.cpp -------------------------------------------------------------------------------- /GeometryShader/vc2015/GeometryShader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/vc2015/GeometryShader.sln -------------------------------------------------------------------------------- /GeometryShader/vc2015/GeometryShader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/vc2015/GeometryShader.vcxproj -------------------------------------------------------------------------------- /GeometryShader/vc2015/GeometryShader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/vc2015/GeometryShader.vcxproj.filters -------------------------------------------------------------------------------- /GeometryShader/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/vc2015/Resources.rc -------------------------------------------------------------------------------- /GeometryShader/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/GeometryShader/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /HexagonMirror/HexagonMirror.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/HexagonMirror.exe -------------------------------------------------------------------------------- /HexagonMirror/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/PREVIEW.png -------------------------------------------------------------------------------- /HexagonMirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/README.md -------------------------------------------------------------------------------- /HexagonMirror/assets/hexagon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/assets/hexagon.obj -------------------------------------------------------------------------------- /HexagonMirror/assets/phong.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/assets/phong.frag -------------------------------------------------------------------------------- /HexagonMirror/assets/phong.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/assets/phong.vert -------------------------------------------------------------------------------- /HexagonMirror/assets/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/assets/placeholder.png -------------------------------------------------------------------------------- /HexagonMirror/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/include/Resources.h -------------------------------------------------------------------------------- /HexagonMirror/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/resources/CinderApp.icns -------------------------------------------------------------------------------- /HexagonMirror/src/HexagonMirrorApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/src/HexagonMirrorApp.cpp -------------------------------------------------------------------------------- /HexagonMirror/vc2015/HexagonMirror.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/vc2015/HexagonMirror.sln -------------------------------------------------------------------------------- /HexagonMirror/vc2015/HexagonMirror.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/vc2015/HexagonMirror.vcxproj -------------------------------------------------------------------------------- /HexagonMirror/vc2015/HexagonMirror.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/vc2015/HexagonMirror.vcxproj.filters -------------------------------------------------------------------------------- /HexagonMirror/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/vc2015/Resources.rc -------------------------------------------------------------------------------- /HexagonMirror/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /HexagonMirror/xcode/HexagonMirror.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/xcode/HexagonMirror.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HexagonMirror/xcode/HexagonMirror_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/HexagonMirror/xcode/HexagonMirror_Prefix.pch -------------------------------------------------------------------------------- /OneWorldMultipleWindows/OneWorldMultipleWindows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/OneWorldMultipleWindows.exe -------------------------------------------------------------------------------- /OneWorldMultipleWindows/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/PREVIEW.png -------------------------------------------------------------------------------- /OneWorldMultipleWindows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/README.md -------------------------------------------------------------------------------- /OneWorldMultipleWindows/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/include/Resources.h -------------------------------------------------------------------------------- /OneWorldMultipleWindows/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /OneWorldMultipleWindows/src/OneWorldMultipleWindowsApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/src/OneWorldMultipleWindowsApp.cpp -------------------------------------------------------------------------------- /OneWorldMultipleWindows/vc2015/OneWorldMultipleWindows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/vc2015/OneWorldMultipleWindows.sln -------------------------------------------------------------------------------- /OneWorldMultipleWindows/vc2015/OneWorldMultipleWindows.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/vc2015/OneWorldMultipleWindows.vcxproj -------------------------------------------------------------------------------- /OneWorldMultipleWindows/vc2015/OneWorldMultipleWindows.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/vc2015/OneWorldMultipleWindows.vcxproj.filters -------------------------------------------------------------------------------- /OneWorldMultipleWindows/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/OneWorldMultipleWindows/vc2015/Resources.rc -------------------------------------------------------------------------------- /PerspectiveWarping/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/PREVIEW.png -------------------------------------------------------------------------------- /PerspectiveWarping/PerspectiveWarping.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/PerspectiveWarping.exe -------------------------------------------------------------------------------- /PerspectiveWarping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/README.md -------------------------------------------------------------------------------- /PerspectiveWarping/assets/USS Enterprise D TNG Season 1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/assets/USS Enterprise D TNG Season 1-2.jpg -------------------------------------------------------------------------------- /PerspectiveWarping/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/include/Resources.h -------------------------------------------------------------------------------- /PerspectiveWarping/src/PerspectiveWarpingApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/src/PerspectiveWarpingApp.cpp -------------------------------------------------------------------------------- /PerspectiveWarping/vc2015/PerspectiveWarping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/vc2015/PerspectiveWarping.sln -------------------------------------------------------------------------------- /PerspectiveWarping/vc2015/PerspectiveWarping.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/vc2015/PerspectiveWarping.vcxproj -------------------------------------------------------------------------------- /PerspectiveWarping/vc2015/PerspectiveWarping.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/vc2015/PerspectiveWarping.vcxproj.filters -------------------------------------------------------------------------------- /PerspectiveWarping/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/vc2015/Resources.rc -------------------------------------------------------------------------------- /PerspectiveWarping/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PerspectiveWarping/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /PickingByColor/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/PREVIEW.png -------------------------------------------------------------------------------- /PickingByColor/PickingByColorApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/PickingByColorApp.exe -------------------------------------------------------------------------------- /PickingByColor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/README.md -------------------------------------------------------------------------------- /PickingByColor/assets/font/b2sq.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/font/b2sq.ttf -------------------------------------------------------------------------------- /PickingByColor/assets/font/b2sqol1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/font/b2sqol1.ttf -------------------------------------------------------------------------------- /PickingByColor/assets/font/b2sqol2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/font/b2sqol2.ttf -------------------------------------------------------------------------------- /PickingByColor/assets/font/bend2squares.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/font/bend2squares.txt -------------------------------------------------------------------------------- /PickingByColor/assets/models/pitcher.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/models/pitcher.msh -------------------------------------------------------------------------------- /PickingByColor/assets/models/pitcher.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/models/pitcher.obj -------------------------------------------------------------------------------- /PickingByColor/assets/models/watering_can.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/models/watering_can.msh -------------------------------------------------------------------------------- /PickingByColor/assets/models/watering_can.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/models/watering_can.obj -------------------------------------------------------------------------------- /PickingByColor/assets/shaders/phong.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/shaders/phong.frag -------------------------------------------------------------------------------- /PickingByColor/assets/shaders/phong.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/assets/shaders/phong.vert -------------------------------------------------------------------------------- /PickingByColor/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/resources/CinderApp.icns -------------------------------------------------------------------------------- /PickingByColor/src/PickingByColorApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/src/PickingByColorApp.cpp -------------------------------------------------------------------------------- /PickingByColor/vc2015/PickingByColorApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/vc2015/PickingByColorApp.sln -------------------------------------------------------------------------------- /PickingByColor/vc2015/PickingByColorApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/vc2015/PickingByColorApp.vcxproj -------------------------------------------------------------------------------- /PickingByColor/vc2015/PickingByColorApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/vc2015/PickingByColorApp.vcxproj.filters -------------------------------------------------------------------------------- /PickingByColor/xcode/PickingByColor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/xcode/PickingByColor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PickingByColor/xcode/PickingByColor_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PickingByColor/xcode/PickingByColor_Prefix.pch -------------------------------------------------------------------------------- /PostProcessing/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/PREVIEW.png -------------------------------------------------------------------------------- /PostProcessing/PostProcessing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/PostProcessing.exe -------------------------------------------------------------------------------- /PostProcessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/README.md -------------------------------------------------------------------------------- /PostProcessing/assets/post_process.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/assets/post_process.frag -------------------------------------------------------------------------------- /PostProcessing/assets/post_process.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/assets/post_process.vert -------------------------------------------------------------------------------- /PostProcessing/assets/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/assets/test.png -------------------------------------------------------------------------------- /PostProcessing/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/include/Resources.h -------------------------------------------------------------------------------- /PostProcessing/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/resources/CinderApp.icns -------------------------------------------------------------------------------- /PostProcessing/src/PostProcessingApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/src/PostProcessingApp.cpp -------------------------------------------------------------------------------- /PostProcessing/vc2015/PostProcessing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/vc2015/PostProcessing.sln -------------------------------------------------------------------------------- /PostProcessing/vc2015/PostProcessing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/vc2015/PostProcessing.vcxproj -------------------------------------------------------------------------------- /PostProcessing/vc2015/PostProcessing.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/vc2015/PostProcessing.vcxproj.filters -------------------------------------------------------------------------------- /PostProcessing/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/vc2015/Resources.rc -------------------------------------------------------------------------------- /PostProcessing/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /PostProcessing/xcode/PostProcessing.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/xcode/PostProcessing.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PostProcessing/xcode/PostProcessing_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/PostProcessing/xcode/PostProcessing_Prefix.pch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/README.md -------------------------------------------------------------------------------- /SMAA/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/PREVIEW.png -------------------------------------------------------------------------------- /SMAA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/README.md -------------------------------------------------------------------------------- /SMAA/SMAA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/SMAA.exe -------------------------------------------------------------------------------- /SMAA/assets/SMAA.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/assets/SMAA.glsl -------------------------------------------------------------------------------- /SMAA/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/assets/arrow.png -------------------------------------------------------------------------------- /SMAA/assets/smaa1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/assets/smaa1.frag -------------------------------------------------------------------------------- /SMAA/assets/smaa1.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/assets/smaa1.vert -------------------------------------------------------------------------------- /SMAA/assets/smaa2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/assets/smaa2.frag -------------------------------------------------------------------------------- /SMAA/assets/smaa2.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/assets/smaa2.vert -------------------------------------------------------------------------------- /SMAA/assets/smaa3.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/assets/smaa3.frag -------------------------------------------------------------------------------- /SMAA/assets/smaa3.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/assets/smaa3.vert -------------------------------------------------------------------------------- /SMAA/include/AreaTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/include/AreaTex.h -------------------------------------------------------------------------------- /SMAA/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/include/Resources.h -------------------------------------------------------------------------------- /SMAA/include/SMAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/include/SMAA.h -------------------------------------------------------------------------------- /SMAA/include/SearchTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/include/SearchTex.h -------------------------------------------------------------------------------- /SMAA/include/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/include/Shader.h -------------------------------------------------------------------------------- /SMAA/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/resources/CinderApp.icns -------------------------------------------------------------------------------- /SMAA/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /SMAA/src/SMAA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/src/SMAA.cpp -------------------------------------------------------------------------------- /SMAA/src/SMAAApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/src/SMAAApp.cpp -------------------------------------------------------------------------------- /SMAA/src/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/src/Shader.cpp -------------------------------------------------------------------------------- /SMAA/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/vc2013/Resources.rc -------------------------------------------------------------------------------- /SMAA/vc2013/SMAA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/vc2013/SMAA.sln -------------------------------------------------------------------------------- /SMAA/vc2013/SMAA.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/vc2013/SMAA.vcxproj -------------------------------------------------------------------------------- /SMAA/vc2013/SMAA.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/vc2013/SMAA.vcxproj.filters -------------------------------------------------------------------------------- /SMAA/xcode/SMAA.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/xcode/SMAA.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SMAA/xcode/SMAA_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SMAA/xcode/SMAA_Prefix.pch -------------------------------------------------------------------------------- /ShaderToy/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/PREVIEW.png -------------------------------------------------------------------------------- /ShaderToy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/README.md -------------------------------------------------------------------------------- /ShaderToy/ShaderToy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/ShaderToy.exe -------------------------------------------------------------------------------- /ShaderToy/assets/bubbles.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/bubbles.frag -------------------------------------------------------------------------------- /ShaderToy/assets/clouds.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/clouds.frag -------------------------------------------------------------------------------- /ShaderToy/assets/common/shadertoy.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/common/shadertoy.frag -------------------------------------------------------------------------------- /ShaderToy/assets/common/shadertoy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/common/shadertoy.inc -------------------------------------------------------------------------------- /ShaderToy/assets/common/shadertoy.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/common/shadertoy.vert -------------------------------------------------------------------------------- /ShaderToy/assets/guts.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/guts.frag -------------------------------------------------------------------------------- /ShaderToy/assets/hell.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/hell.frag -------------------------------------------------------------------------------- /ShaderToy/assets/metrics.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/metrics.frag -------------------------------------------------------------------------------- /ShaderToy/assets/portals.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/portals.frag -------------------------------------------------------------------------------- /ShaderToy/assets/presets/tex02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/presets/tex02.jpg -------------------------------------------------------------------------------- /ShaderToy/assets/presets/tex06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/presets/tex06.jpg -------------------------------------------------------------------------------- /ShaderToy/assets/presets/tex09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/presets/tex09.jpg -------------------------------------------------------------------------------- /ShaderToy/assets/presets/tex16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/presets/tex16.png -------------------------------------------------------------------------------- /ShaderToy/assets/warping.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/assets/warping.frag -------------------------------------------------------------------------------- /ShaderToy/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/include/Resources.h -------------------------------------------------------------------------------- /ShaderToy/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /ShaderToy/src/ShaderToyApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/src/ShaderToyApp.cpp -------------------------------------------------------------------------------- /ShaderToy/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/vc2015/Resources.rc -------------------------------------------------------------------------------- /ShaderToy/vc2015/ShaderToy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/vc2015/ShaderToy.sln -------------------------------------------------------------------------------- /ShaderToy/vc2015/ShaderToy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/vc2015/ShaderToy.vcxproj -------------------------------------------------------------------------------- /ShaderToy/vc2015/ShaderToy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/ShaderToy/vc2015/ShaderToy.vcxproj.filters -------------------------------------------------------------------------------- /SimpleSceneGraph/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/PREVIEW.png -------------------------------------------------------------------------------- /SimpleSceneGraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/README.md -------------------------------------------------------------------------------- /SimpleSceneGraph/SimpleSceneGraph.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/SimpleSceneGraph.exe -------------------------------------------------------------------------------- /SimpleSceneGraph/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/include/Resources.h -------------------------------------------------------------------------------- /SimpleSceneGraph/include/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/include/license.txt -------------------------------------------------------------------------------- /SimpleSceneGraph/include/nodes/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/include/nodes/Node.cpp -------------------------------------------------------------------------------- /SimpleSceneGraph/include/nodes/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/include/nodes/Node.h -------------------------------------------------------------------------------- /SimpleSceneGraph/src/NodeRectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/src/NodeRectangle.cpp -------------------------------------------------------------------------------- /SimpleSceneGraph/src/NodeRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/src/NodeRectangle.h -------------------------------------------------------------------------------- /SimpleSceneGraph/src/SimpleSceneGraphApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/src/SimpleSceneGraphApp.cpp -------------------------------------------------------------------------------- /SimpleSceneGraph/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/vc2015/Resources.rc -------------------------------------------------------------------------------- /SimpleSceneGraph/vc2015/SimpleSceneGraph.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/vc2015/SimpleSceneGraph.sln -------------------------------------------------------------------------------- /SimpleSceneGraph/vc2015/SimpleSceneGraph.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/vc2015/SimpleSceneGraph.vcxproj -------------------------------------------------------------------------------- /SimpleSceneGraph/vc2015/SimpleSceneGraph.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/vc2015/SimpleSceneGraph.vcxproj.filters -------------------------------------------------------------------------------- /SimpleSceneGraph/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleSceneGraph/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /SimpleShader/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/PREVIEW.png -------------------------------------------------------------------------------- /SimpleShader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/README.md -------------------------------------------------------------------------------- /SimpleShader/SimpleShader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/SimpleShader.exe -------------------------------------------------------------------------------- /SimpleShader/assets/bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/assets/bottom.jpg -------------------------------------------------------------------------------- /SimpleShader/assets/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/assets/shader.frag -------------------------------------------------------------------------------- /SimpleShader/assets/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/assets/shader.vert -------------------------------------------------------------------------------- /SimpleShader/assets/top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/assets/top.jpg -------------------------------------------------------------------------------- /SimpleShader/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/include/Resources.h -------------------------------------------------------------------------------- /SimpleShader/src/SimpleShaderApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/src/SimpleShaderApp.cpp -------------------------------------------------------------------------------- /SimpleShader/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/vc2015/Resources.rc -------------------------------------------------------------------------------- /SimpleShader/vc2015/SimpleShader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/vc2015/SimpleShader.sln -------------------------------------------------------------------------------- /SimpleShader/vc2015/SimpleShader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/vc2015/SimpleShader.vcxproj -------------------------------------------------------------------------------- /SimpleShader/vc2015/SimpleShader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/vc2015/SimpleShader.vcxproj.filters -------------------------------------------------------------------------------- /SimpleShader/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SimpleShader/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /SmoothDisplacementMapping/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/PREVIEW.png -------------------------------------------------------------------------------- /SmoothDisplacementMapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/README.md -------------------------------------------------------------------------------- /SmoothDisplacementMapping/SmoothDisplacementMapping.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/SmoothDisplacementMapping.exe -------------------------------------------------------------------------------- /SmoothDisplacementMapping/assets/background.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/assets/background.frag -------------------------------------------------------------------------------- /SmoothDisplacementMapping/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/assets/background.png -------------------------------------------------------------------------------- /SmoothDisplacementMapping/assets/background.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/assets/background.vert -------------------------------------------------------------------------------- /SmoothDisplacementMapping/assets/displacement_map.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/assets/displacement_map.frag -------------------------------------------------------------------------------- /SmoothDisplacementMapping/assets/displacement_map.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/assets/displacement_map.vert -------------------------------------------------------------------------------- /SmoothDisplacementMapping/assets/mesh.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/assets/mesh.frag -------------------------------------------------------------------------------- /SmoothDisplacementMapping/assets/mesh.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/assets/mesh.vert -------------------------------------------------------------------------------- /SmoothDisplacementMapping/assets/normal_map.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/assets/normal_map.frag -------------------------------------------------------------------------------- /SmoothDisplacementMapping/assets/normal_map.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/assets/normal_map.vert -------------------------------------------------------------------------------- /SmoothDisplacementMapping/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/include/Resources.h -------------------------------------------------------------------------------- /SmoothDisplacementMapping/src/SmoothDisplacementMappingApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/src/SmoothDisplacementMappingApp.cpp -------------------------------------------------------------------------------- /SmoothDisplacementMapping/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/vc2015/Resources.rc -------------------------------------------------------------------------------- /SmoothDisplacementMapping/vc2015/SmoothDisplacementMapping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/vc2015/SmoothDisplacementMapping.sln -------------------------------------------------------------------------------- /SmoothDisplacementMapping/vc2015/SmoothDisplacementMapping.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/vc2015/SmoothDisplacementMapping.vcxproj -------------------------------------------------------------------------------- /SmoothDisplacementMapping/vc2015/SmoothDisplacementMapping.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/vc2015/SmoothDisplacementMapping.vcxproj.filters -------------------------------------------------------------------------------- /SmoothDisplacementMapping/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/SmoothDisplacementMapping/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /Stars/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/PREVIEW.png -------------------------------------------------------------------------------- /Stars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/README.md -------------------------------------------------------------------------------- /Stars/Stars.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/Stars.exe -------------------------------------------------------------------------------- /Stars/assets/constellationlabels.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/constellationlabels.cdb -------------------------------------------------------------------------------- /Stars/assets/constellations.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/constellations.cdb -------------------------------------------------------------------------------- /Stars/assets/constellations.cln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/constellations.cln -------------------------------------------------------------------------------- /Stars/assets/fonts/Ubuntu-BoldItalic.sdff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/fonts/Ubuntu-BoldItalic.sdff -------------------------------------------------------------------------------- /Stars/assets/fonts/Ubuntu-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/fonts/Ubuntu-BoldItalic.ttf -------------------------------------------------------------------------------- /Stars/assets/fonts/Ubuntu-LightItalic.sdff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/fonts/Ubuntu-LightItalic.sdff -------------------------------------------------------------------------------- /Stars/assets/fonts/Ubuntu-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/fonts/Ubuntu-LightItalic.ttf -------------------------------------------------------------------------------- /Stars/assets/fonts/Ubuntu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/fonts/Ubuntu.txt -------------------------------------------------------------------------------- /Stars/assets/fonts/sdf.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/fonts/sdf.ttf -------------------------------------------------------------------------------- /Stars/assets/fonts/sdf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/fonts/sdf.txt -------------------------------------------------------------------------------- /Stars/assets/hygxyz.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/hygxyz.csv -------------------------------------------------------------------------------- /Stars/assets/labels.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/labels.cdb -------------------------------------------------------------------------------- /Stars/assets/music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/music/README.md -------------------------------------------------------------------------------- /Stars/assets/shaders/common.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/shaders/common.glsl -------------------------------------------------------------------------------- /Stars/assets/shaders/cylindrical.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/shaders/cylindrical.frag -------------------------------------------------------------------------------- /Stars/assets/shaders/cylindrical.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/shaders/cylindrical.vert -------------------------------------------------------------------------------- /Stars/assets/shaders/halos.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/shaders/halos.frag -------------------------------------------------------------------------------- /Stars/assets/shaders/halos.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/shaders/halos.vert -------------------------------------------------------------------------------- /Stars/assets/shaders/labels.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/shaders/labels.vert -------------------------------------------------------------------------------- /Stars/assets/shaders/stars.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/shaders/stars.frag -------------------------------------------------------------------------------- /Stars/assets/shaders/stars.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/shaders/stars.vert -------------------------------------------------------------------------------- /Stars/assets/sound/low_rumble_loop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/sound/low_rumble_loop.mp3 -------------------------------------------------------------------------------- /Stars/assets/stars.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/stars.cdb -------------------------------------------------------------------------------- /Stars/assets/textures/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/textures/background.jpg -------------------------------------------------------------------------------- /Stars/assets/textures/background.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/textures/background.url -------------------------------------------------------------------------------- /Stars/assets/textures/constellations.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/textures/constellations.jpg -------------------------------------------------------------------------------- /Stars/assets/textures/corona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/textures/corona.png -------------------------------------------------------------------------------- /Stars/assets/textures/nova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/textures/nova.png -------------------------------------------------------------------------------- /Stars/assets/textures/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/textures/particle.png -------------------------------------------------------------------------------- /Stars/assets/textures/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/textures/sparkle.png -------------------------------------------------------------------------------- /Stars/assets/textures/star_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/textures/star_glow.png -------------------------------------------------------------------------------- /Stars/assets/textures/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/assets/textures/sun.png -------------------------------------------------------------------------------- /Stars/bin/win32-visualStudio/ikpFlac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/bin/win32-visualStudio/ikpFlac.dll -------------------------------------------------------------------------------- /Stars/bin/win32-visualStudio/ikpMP3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/bin/win32-visualStudio/ikpMP3.dll -------------------------------------------------------------------------------- /Stars/bin/win32-visualStudio/irrKlang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/bin/win32-visualStudio/irrKlang.dll -------------------------------------------------------------------------------- /Stars/ikpFlac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/ikpFlac.dll -------------------------------------------------------------------------------- /Stars/ikpMP3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/ikpMP3.dll -------------------------------------------------------------------------------- /Stars/include/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | ... 4 | -------------------------------------------------------------------------------- /Stars/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/Resources.h -------------------------------------------------------------------------------- /Stars/include/ik_ESoundEngineOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_ESoundEngineOptions.h -------------------------------------------------------------------------------- /Stars/include/ik_ESoundOutputDrivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_ESoundOutputDrivers.h -------------------------------------------------------------------------------- /Stars/include/ik_EStreamModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_EStreamModes.h -------------------------------------------------------------------------------- /Stars/include/ik_IAudioRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_IAudioRecorder.h -------------------------------------------------------------------------------- /Stars/include/ik_IAudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_IAudioStream.h -------------------------------------------------------------------------------- /Stars/include/ik_IAudioStreamLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_IAudioStreamLoader.h -------------------------------------------------------------------------------- /Stars/include/ik_IFileFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_IFileFactory.h -------------------------------------------------------------------------------- /Stars/include/ik_IFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_IFileReader.h -------------------------------------------------------------------------------- /Stars/include/ik_IRefCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_IRefCounted.h -------------------------------------------------------------------------------- /Stars/include/ik_ISound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_ISound.h -------------------------------------------------------------------------------- /Stars/include/ik_ISoundDeviceList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_ISoundDeviceList.h -------------------------------------------------------------------------------- /Stars/include/ik_ISoundEffectControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_ISoundEffectControl.h -------------------------------------------------------------------------------- /Stars/include/ik_ISoundEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_ISoundEngine.h -------------------------------------------------------------------------------- /Stars/include/ik_ISoundMixedOutputReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_ISoundMixedOutputReceiver.h -------------------------------------------------------------------------------- /Stars/include/ik_ISoundSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_ISoundSource.h -------------------------------------------------------------------------------- /Stars/include/ik_ISoundStopEventReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_ISoundStopEventReceiver.h -------------------------------------------------------------------------------- /Stars/include/ik_IVirtualRefCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_IVirtualRefCounted.h -------------------------------------------------------------------------------- /Stars/include/ik_SAudioStreamFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_SAudioStreamFormat.h -------------------------------------------------------------------------------- /Stars/include/ik_irrKlangTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_irrKlangTypes.h -------------------------------------------------------------------------------- /Stars/include/ik_vec3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/ik_vec3d.h -------------------------------------------------------------------------------- /Stars/include/irrKlang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/include/irrKlang.h -------------------------------------------------------------------------------- /Stars/irrKlang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/irrKlang.dll -------------------------------------------------------------------------------- /Stars/libs/msw/irrKlang.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/libs/msw/irrKlang.lib -------------------------------------------------------------------------------- /Stars/src/Background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Background.cpp -------------------------------------------------------------------------------- /Stars/src/Background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Background.h -------------------------------------------------------------------------------- /Stars/src/Cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Cam.cpp -------------------------------------------------------------------------------- /Stars/src/Cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Cam.h -------------------------------------------------------------------------------- /Stars/src/ConstellationArt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/ConstellationArt.cpp -------------------------------------------------------------------------------- /Stars/src/ConstellationArt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/ConstellationArt.h -------------------------------------------------------------------------------- /Stars/src/ConstellationLabels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/ConstellationLabels.cpp -------------------------------------------------------------------------------- /Stars/src/ConstellationLabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/ConstellationLabels.h -------------------------------------------------------------------------------- /Stars/src/Constellations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Constellations.cpp -------------------------------------------------------------------------------- /Stars/src/Constellations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Constellations.h -------------------------------------------------------------------------------- /Stars/src/Conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Conversions.cpp -------------------------------------------------------------------------------- /Stars/src/Conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Conversions.h -------------------------------------------------------------------------------- /Stars/src/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Grid.cpp -------------------------------------------------------------------------------- /Stars/src/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Grid.h -------------------------------------------------------------------------------- /Stars/src/Labels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Labels.cpp -------------------------------------------------------------------------------- /Stars/src/Labels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Labels.h -------------------------------------------------------------------------------- /Stars/src/Stars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Stars.cpp -------------------------------------------------------------------------------- /Stars/src/Stars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/Stars.h -------------------------------------------------------------------------------- /Stars/src/StarsApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/StarsApp.cpp -------------------------------------------------------------------------------- /Stars/src/UserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/UserInterface.cpp -------------------------------------------------------------------------------- /Stars/src/UserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/src/UserInterface.h -------------------------------------------------------------------------------- /Stars/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/vc2015/Resources.rc -------------------------------------------------------------------------------- /Stars/vc2015/Stars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/vc2015/Stars.sln -------------------------------------------------------------------------------- /Stars/vc2015/Stars.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/vc2015/Stars.vcxproj -------------------------------------------------------------------------------- /Stars/vc2015/Stars.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/vc2015/Stars.vcxproj.filters -------------------------------------------------------------------------------- /Stars/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/Stars/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /TextRendering/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/PREVIEW.png -------------------------------------------------------------------------------- /TextRendering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/README.md -------------------------------------------------------------------------------- /TextRendering/TextRendering.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/TextRendering.exe -------------------------------------------------------------------------------- /TextRendering/assets/fonts/Bubblegum Sans Regular.sdff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/Bubblegum Sans Regular.sdff -------------------------------------------------------------------------------- /TextRendering/assets/fonts/BubblegumSans/BubblegumSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/BubblegumSans/BubblegumSans-Regular.ttf -------------------------------------------------------------------------------- /TextRendering/assets/fonts/BubblegumSans/FONTLOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/BubblegumSans/FONTLOG.txt -------------------------------------------------------------------------------- /TextRendering/assets/fonts/BubblegumSans/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/BubblegumSans/OFL.txt -------------------------------------------------------------------------------- /TextRendering/assets/fonts/SDFont Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/SDFont Readme.txt -------------------------------------------------------------------------------- /TextRendering/assets/fonts/SDFont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/SDFont.exe -------------------------------------------------------------------------------- /TextRendering/assets/fonts/Walter Turncoat Regular.sdff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/Walter Turncoat Regular.sdff -------------------------------------------------------------------------------- /TextRendering/assets/fonts/Walter Turncoat/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/Walter Turncoat/LICENSE.txt -------------------------------------------------------------------------------- /TextRendering/assets/fonts/Walter Turncoat/WalterTurncoat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/Walter Turncoat/WalterTurncoat.ttf -------------------------------------------------------------------------------- /TextRendering/assets/fonts/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/fonts/readme.txt -------------------------------------------------------------------------------- /TextRendering/assets/text/345.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/assets/text/345.txt -------------------------------------------------------------------------------- /TextRendering/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/Resources.h -------------------------------------------------------------------------------- /TextRendering/include/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/license.txt -------------------------------------------------------------------------------- /TextRendering/include/text/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/Font.cpp -------------------------------------------------------------------------------- /TextRendering/include/text/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/Font.h -------------------------------------------------------------------------------- /TextRendering/include/text/FontStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/FontStore.cpp -------------------------------------------------------------------------------- /TextRendering/include/text/FontStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/FontStore.h -------------------------------------------------------------------------------- /TextRendering/include/text/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/Text.cpp -------------------------------------------------------------------------------- /TextRendering/include/text/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/Text.h -------------------------------------------------------------------------------- /TextRendering/include/text/TextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/TextBox.cpp -------------------------------------------------------------------------------- /TextRendering/include/text/TextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/TextBox.h -------------------------------------------------------------------------------- /TextRendering/include/text/TextLabels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/TextLabels.cpp -------------------------------------------------------------------------------- /TextRendering/include/text/TextLabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/include/text/TextLabels.h -------------------------------------------------------------------------------- /TextRendering/src/TextRenderingApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/src/TextRenderingApp.cpp -------------------------------------------------------------------------------- /TextRendering/vc2015/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/vc2015/Resources.rc -------------------------------------------------------------------------------- /TextRendering/vc2015/TextRendering.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/vc2015/TextRendering.sln -------------------------------------------------------------------------------- /TextRendering/vc2015/TextRendering.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/vc2015/TextRendering.vcxproj -------------------------------------------------------------------------------- /TextRendering/vc2015/TextRendering.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/vc2015/TextRendering.vcxproj.filters -------------------------------------------------------------------------------- /TextRendering/vc2015/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TextRendering/vc2015/cinder_app_icon.ico -------------------------------------------------------------------------------- /TransparentMesh/PREVIEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/PREVIEW.png -------------------------------------------------------------------------------- /TransparentMesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/README.md -------------------------------------------------------------------------------- /TransparentMesh/TransparentMesh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/TransparentMesh.exe -------------------------------------------------------------------------------- /TransparentMesh/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/assets/background.png -------------------------------------------------------------------------------- /TransparentMesh/assets/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/assets/earth.png -------------------------------------------------------------------------------- /TransparentMesh/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/include/Resources.h -------------------------------------------------------------------------------- /TransparentMesh/src/TransparentMeshApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/src/TransparentMeshApp.cpp -------------------------------------------------------------------------------- /TransparentMesh/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/vc2013/Resources.rc -------------------------------------------------------------------------------- /TransparentMesh/vc2013/TransparentMesh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/vc2013/TransparentMesh.sln -------------------------------------------------------------------------------- /TransparentMesh/vc2013/TransparentMesh.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/vc2013/TransparentMesh.vcxproj -------------------------------------------------------------------------------- /TransparentMesh/vc2013/TransparentMesh.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/vc2013/TransparentMesh.vcxproj.filters -------------------------------------------------------------------------------- /TransparentMesh/vc2013/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/TransparentMesh/vc2013/cinder_app_icon.ico -------------------------------------------------------------------------------- /formatter.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhoux/Cinder-Samples/HEAD/formatter.bat --------------------------------------------------------------------------------