├── .clang-format ├── .gitattributes ├── .github └── workflows │ ├── cmake-ubuntu.yml │ ├── vc2022-msw.yml │ └── xcode-macOS.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── blocks ├── Box2D │ ├── cinderblock.png │ ├── cinderblock.xml │ ├── proj │ │ └── cmake │ │ │ └── Box2DConfig.cmake │ ├── src │ │ └── Box2D │ │ │ ├── Box2D.h │ │ │ ├── Collision │ │ │ ├── Shapes │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ ├── b2ChainShape.h │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ ├── b2CircleShape.h │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ ├── b2EdgeShape.h │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ ├── b2PolygonShape.h │ │ │ │ └── b2Shape.h │ │ │ ├── b2BroadPhase.cpp │ │ │ ├── b2BroadPhase.h │ │ │ ├── b2CollideCircle.cpp │ │ │ ├── b2CollideEdge.cpp │ │ │ ├── b2CollidePolygon.cpp │ │ │ ├── b2Collision.cpp │ │ │ ├── b2Collision.h │ │ │ ├── b2Distance.cpp │ │ │ ├── b2Distance.h │ │ │ ├── b2DynamicTree.cpp │ │ │ ├── b2DynamicTree.h │ │ │ ├── b2TimeOfImpact.cpp │ │ │ └── b2TimeOfImpact.h │ │ │ ├── Common │ │ │ ├── b2BlockAllocator.cpp │ │ │ ├── b2BlockAllocator.h │ │ │ ├── b2Draw.cpp │ │ │ ├── b2Draw.h │ │ │ ├── b2GrowableStack.h │ │ │ ├── b2Math.cpp │ │ │ ├── b2Math.h │ │ │ ├── b2Settings.cpp │ │ │ ├── b2Settings.h │ │ │ ├── b2StackAllocator.cpp │ │ │ ├── b2StackAllocator.h │ │ │ ├── b2Timer.cpp │ │ │ └── b2Timer.h │ │ │ ├── Dynamics │ │ │ ├── Contacts │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ ├── b2CircleContact.h │ │ │ │ ├── b2Contact.cpp │ │ │ │ ├── b2Contact.h │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ ├── b2ContactSolver.h │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ └── b2PolygonContact.h │ │ │ ├── Joints │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ ├── b2GearJoint.h │ │ │ │ ├── b2Joint.cpp │ │ │ │ ├── b2Joint.h │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ ├── b2MouseJoint.h │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ ├── b2RopeJoint.h │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ ├── b2WeldJoint.h │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ └── b2WheelJoint.h │ │ │ ├── b2Body.cpp │ │ │ ├── b2Body.h │ │ │ ├── b2ContactManager.cpp │ │ │ ├── b2ContactManager.h │ │ │ ├── b2Fixture.cpp │ │ │ ├── b2Fixture.h │ │ │ ├── b2Island.cpp │ │ │ ├── b2Island.h │ │ │ ├── b2TimeStep.h │ │ │ ├── b2World.cpp │ │ │ ├── b2World.h │ │ │ ├── b2WorldCallbacks.cpp │ │ │ └── b2WorldCallbacks.h │ │ │ └── Rope │ │ │ ├── b2Rope.cpp │ │ │ └── b2Rope.h │ └── templates │ │ └── Basic Box2D │ │ ├── src │ │ └── _TBOX_PREFIX_App.cpp │ │ └── template.xml ├── Cairo │ ├── cinderblock.png │ ├── cinderblock.xml │ ├── include │ │ ├── cinder │ │ │ └── cairo │ │ │ │ └── Cairo.h │ │ ├── macosx │ │ │ ├── cairo-deprecated.h │ │ │ ├── cairo-features.h │ │ │ ├── cairo-pdf.h │ │ │ ├── cairo-ps.h │ │ │ ├── cairo-quartz-image.h │ │ │ ├── cairo-quartz.h │ │ │ ├── cairo-script.h │ │ │ ├── cairo-svg.h │ │ │ ├── cairo-version.h │ │ │ └── cairo.h │ │ └── msw │ │ │ ├── cairo-deprecated.h │ │ │ ├── cairo-features.h │ │ │ ├── cairo-pdf.h │ │ │ ├── cairo-ps.h │ │ │ ├── cairo-script.h │ │ │ ├── cairo-svg.h │ │ │ ├── cairo-version.h │ │ │ ├── cairo-win32.h │ │ │ └── cairo.h │ ├── lib │ │ ├── macosx │ │ │ ├── libcairo.a │ │ │ ├── libpixman-1.a │ │ │ └── libpng16.a │ │ └── msw │ │ │ └── x64 │ │ │ ├── cairo-static.lib │ │ │ └── pixman-1.lib │ └── src │ │ └── Cairo.cpp ├── Clipper │ ├── cinderblock.png │ ├── cinderblock.xml │ ├── include │ │ ├── CinderClipper.h │ │ └── clipper.hpp │ ├── samples │ │ └── BasicBoolean │ │ │ ├── include │ │ │ └── Resources.h │ │ │ ├── proj │ │ │ ├── cmake │ │ │ │ └── CMakeLists.txt │ │ │ ├── vc2022 │ │ │ │ ├── BasicBoolean.sln │ │ │ │ ├── BasicBoolean.vcxproj │ │ │ │ ├── BasicBoolean.vcxproj.filters │ │ │ │ └── Resources.rc │ │ │ └── xcode │ │ │ │ ├── BasicBoolean.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── BasicBoolean_Prefix.pch │ │ │ │ └── Info.plist │ │ │ └── src │ │ │ └── BasicBooleanApp.cpp │ └── src │ │ ├── CinderClipper.cpp │ │ └── clipper.cpp ├── LocationManager │ ├── cinderblock.png │ ├── cinderblock.xml │ └── src │ │ └── cinder │ │ ├── LocationManager.cpp │ │ └── LocationManager.h ├── MotionManager │ ├── cinderblock.png │ ├── cinderblock.xml │ └── src │ │ └── cinder │ │ ├── MotionImplAndroid.cpp │ │ ├── MotionImplAndroid.h │ │ ├── MotionImplCoreMotion.h │ │ ├── MotionImplCoreMotion.mm │ │ ├── MotionManager.cpp │ │ └── MotionManager.h ├── OSC │ ├── cinderblock.png │ ├── cinderblock.xml │ ├── proj │ │ └── cmake │ │ │ └── OSCConfig.cmake │ ├── samples │ │ ├── BroadcastSender │ │ │ ├── include │ │ │ │ └── Resources.h │ │ │ ├── proj │ │ │ │ └── cmake │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── src │ │ │ │ └── BroadcastSenderApp.cpp │ │ │ ├── vc2022 │ │ │ │ ├── BroadcastSender.sln │ │ │ │ ├── BroadcastSender.vcxproj │ │ │ │ ├── BroadcastSender.vcxproj.filters │ │ │ │ └── Resources.rc │ │ │ ├── xcode │ │ │ │ ├── BroadcastSender.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── BroadcastSender_Prefix.pch │ │ │ │ └── Info.plist │ │ │ └── xcode_ios │ │ │ │ ├── BroadcastSender.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── BroadcastSender_Prefix.pch │ │ │ │ ├── Images.xcassets │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667@2x.png │ │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ │ ├── Info.plist │ │ │ │ └── LaunchScreen.xib │ │ ├── SimpleMultiThreadedReceiver │ │ │ ├── include │ │ │ │ └── Resources.h │ │ │ ├── proj │ │ │ │ └── cmake │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── src │ │ │ │ └── SimpleMultiThreadedReceiverApp.cpp │ │ │ ├── vc2022 │ │ │ │ ├── Resources.rc │ │ │ │ ├── SimpleMultiThreadedReceiver.sln │ │ │ │ ├── SimpleMultiThreadedReceiver.vcxproj │ │ │ │ └── SimpleMultiThreadedReceiver.vcxproj.filters │ │ │ ├── xcode │ │ │ │ ├── Info.plist │ │ │ │ ├── SimpleMultiThreadedReceiver.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── SimpleMultiThreadedReceiver_Prefix.pch │ │ │ └── xcode_ios │ │ │ │ ├── Images.xcassets │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667@2x.png │ │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.xib │ │ │ │ ├── SimpleMultiThreadedReceiver.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── SimpleMultiThreadedReceiver_Prefix.pch │ │ ├── SimpleMultiThreadedSender │ │ │ ├── include │ │ │ │ └── Resources.h │ │ │ ├── proj │ │ │ │ └── cmake │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── src │ │ │ │ └── SimpleMultiThreadedSenderApp.cpp │ │ │ ├── vc2022 │ │ │ │ ├── Resources.rc │ │ │ │ ├── SimpleMultiThreadedSender.sln │ │ │ │ ├── SimpleMultiThreadedSender.vcxproj │ │ │ │ └── SimpleMultiThreadedSender.vcxproj.filters │ │ │ ├── xcode │ │ │ │ ├── Info.plist │ │ │ │ ├── SimpleMultiThreadedSender.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── SimpleMultiThreadedSender_Prefix.pch │ │ │ └── xcode_ios │ │ │ │ ├── Images.xcassets │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667@2x.png │ │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.xib │ │ │ │ ├── SimpleMultiThreadedSender.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── SimpleMultiThreadedSender_Prefix.pch │ │ ├── SimpleReceiver │ │ │ ├── include │ │ │ │ └── Resources.h │ │ │ ├── proj │ │ │ │ └── cmake │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── src │ │ │ │ └── SimpleReceiverApp.cpp │ │ │ ├── vc2022 │ │ │ │ ├── Resources.rc │ │ │ │ ├── SimpleReceiver.sln │ │ │ │ ├── SimpleReceiver.vcxproj │ │ │ │ └── SimpleReceiver.vcxproj.filters │ │ │ ├── xcode │ │ │ │ ├── Info.plist │ │ │ │ ├── SimpleReceiver.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── SimpleReceiver_Prefix.pch │ │ │ └── xcode_ios │ │ │ │ ├── Images.xcassets │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667@2x.png │ │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.xib │ │ │ │ ├── SimpleReceiver.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── SimpleReceiver_Prefix.pch │ │ └── SimpleSender │ │ │ ├── include │ │ │ └── Resources.h │ │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ │ ├── src │ │ │ └── SimpleSenderApp.cpp │ │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── SimpleSender.sln │ │ │ ├── SimpleSender.vcxproj │ │ │ └── SimpleSender.vcxproj.filters │ │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── SimpleSender.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── SimpleSender_Prefix.pch │ │ │ └── xcode_ios │ │ │ ├── Images.xcassets │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667@2x.png │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.xib │ │ │ ├── SimpleSender.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── SimpleSender_Prefix.pch │ ├── src │ │ └── cinder │ │ │ └── osc │ │ │ ├── Osc.cpp │ │ │ └── Osc.h │ └── test │ │ └── Test │ │ ├── include │ │ └── Resources.h │ │ ├── src │ │ └── TestApp.cpp │ │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── Test.sln │ │ ├── Test.vcxproj │ │ └── Test.vcxproj.filters │ │ ├── xcode │ │ ├── Info.plist │ │ ├── Test.xcodeproj │ │ │ └── project.pbxproj │ │ └── Test_Prefix.pch │ │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ ├── Test.xcodeproj │ │ └── project.pbxproj │ │ └── Test_Prefix.pch ├── TUIO │ ├── cinderblock.png │ ├── cinderblock.xml │ ├── proj │ │ └── cmake │ │ │ └── TUIOConfig.cmake │ ├── samples │ │ ├── TuioListener │ │ │ ├── include │ │ │ │ └── Resources.h │ │ │ ├── proj │ │ │ │ └── cmake │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── resources │ │ │ │ └── cinder_app_icon.ico │ │ │ ├── src │ │ │ │ └── TuioListenerApp.cpp │ │ │ ├── vc2022 │ │ │ │ ├── Resources.rc │ │ │ │ ├── TUIOListener.sln │ │ │ │ ├── TUIOListener.vcxproj │ │ │ │ └── TUIOListener.vcxproj.filters │ │ │ ├── xcode │ │ │ │ ├── Info.plist │ │ │ │ ├── TUIOListener.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── TuioListener_Prefix.pch │ │ │ └── xcode_ios │ │ │ │ ├── Images.xcassets │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667@2x.png │ │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.xib │ │ │ │ ├── TuioListener.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── TuioListener_Prefix.pch │ │ └── TuioMultitouchBasic │ │ │ ├── include │ │ │ └── Resources.h │ │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ │ ├── resources │ │ │ └── cinder_app_icon.ico │ │ │ ├── src │ │ │ └── TuioMultitouchBasicApp.cpp │ │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── TUIOMultiTouchBasic.sln │ │ │ ├── TUIOMultiTouchBasic.vcxproj │ │ │ └── TUIOMultiTouchBasic.vcxproj.filters │ │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── TuioMultitouchBasic.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── TuioMultitouchBasic_Prefix.pch │ │ │ └── xcode_ios │ │ │ ├── Info.plist │ │ │ ├── TuioMultitouchBasic.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── TuioMultitouchBasic_Prefix.pch │ └── src │ │ └── cinder │ │ └── tuio │ │ ├── Tuio.cpp │ │ └── Tuio.h └── __AppTemplates │ ├── BasicApp │ └── OpenGL │ │ ├── assets │ │ └── _TBOX_IGNORE_ │ │ ├── include │ │ └── Resources.h │ │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ │ ├── src │ │ └── _TBOX_PREFIX_App.cpp │ │ ├── template.xml │ │ ├── vc2015_uwp │ │ ├── Package.appxmanifest │ │ └── VisualAssets │ │ │ ├── Logo.png │ │ │ ├── SmallLogo.png │ │ │ ├── SplashScreen.png │ │ │ └── StoreLogo.png │ │ ├── xcode │ │ ├── Info.plist │ │ └── _TBOX_PREFIX__Prefix.pch │ │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ └── _TBOX_PREFIX__Prefix.pch │ ├── CocoaView │ └── OpenGL │ │ ├── assets │ │ └── _TBOX_IGNORE_ │ │ ├── include │ │ ├── Resources.h │ │ ├── _TBOX_PREFIX_App.h │ │ └── _TBOX_PREFIX_Delegate.h │ │ ├── resources │ │ └── CinderApp.icns │ │ ├── src │ │ ├── _TBOX_PREFIX_App.cpp │ │ ├── _TBOX_PREFIX_Delegate.mm │ │ └── main.m │ │ ├── template.xml │ │ └── xcode │ │ ├── Info.plist │ │ ├── TestApp.xcodeproj │ │ └── project.pbxproj │ │ ├── _TBOX_PREFIX__Prefix.pch │ │ └── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── ScreenSaver │ └── OpenGL │ │ ├── include │ │ └── Resources.h │ │ ├── resources │ │ ├── cinder_app_icon.ico │ │ ├── thumbnail.png │ │ └── thumbnail@2x.png │ │ ├── src │ │ └── _TBOX_PREFIX_App.cpp │ │ ├── template.xml │ │ └── xcode │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ └── _TBOX_PREFIX__Prefix.pch │ └── __Foundation │ ├── linux_cmake │ ├── CMakeLists.txt │ └── cibuild │ ├── vc2015_uwp │ ├── foundation.vcxproj │ └── foundation.vcxproj.filters │ ├── vc2019 │ ├── foundation.vcxproj │ └── foundation.vcxproj.filters │ ├── vc2022 │ ├── foundation.vcxproj │ └── foundation.vcxproj.filters │ ├── xcode │ └── project.pbxproj │ └── xcode_ios │ └── project.pbxproj ├── docs ├── Credits.html ├── HISTORY ├── doxygen │ └── Doxyfile ├── generateDocs.py ├── htmlsrc │ ├── _assets │ │ ├── css │ │ │ ├── foundation.css │ │ │ ├── foundation.min.css │ │ │ ├── normalize.css │ │ │ ├── prism.css │ │ │ ├── style.css │ │ │ └── treeview.css │ │ ├── images │ │ │ ├── cinder_logo.svg │ │ │ ├── cinder_logo_bw.svg │ │ │ ├── class_node_parent_and_child_2x.png │ │ │ ├── class_node_subclass_last_child_2x.png │ │ │ ├── cta_arrow.png │ │ │ ├── expand_arrow.png │ │ │ ├── expand_arrow_white.png │ │ │ ├── geometry_sample.jpg │ │ │ ├── header_icons.png │ │ │ ├── icons │ │ │ │ ├── 2d_gray.svg │ │ │ │ ├── 2d_red.svg │ │ │ │ ├── app_gray.svg │ │ │ │ ├── app_red.svg │ │ │ │ ├── audio_gray.svg │ │ │ │ ├── audio_red.svg │ │ │ │ ├── class_icon.svg │ │ │ │ ├── geom_gray.svg │ │ │ │ ├── geom_red.svg │ │ │ │ ├── images_gray.svg │ │ │ │ ├── images_red.svg │ │ │ │ ├── math_gray.svg │ │ │ │ ├── math_red.svg │ │ │ │ ├── namespace_icon.svg │ │ │ │ ├── opengl_gray.svg │ │ │ │ ├── opengl_red.svg │ │ │ │ ├── platform_gray.svg │ │ │ │ ├── platform_red.svg │ │ │ │ ├── system_gray.svg │ │ │ │ ├── system_red.svg │ │ │ │ ├── video_gray.svg │ │ │ │ └── video_red.svg │ │ │ ├── normal_mapping_sample.jpg │ │ │ ├── orange_chevron.png │ │ │ ├── superformula_sample.jpg │ │ │ └── tree_icons.png │ │ └── js │ │ │ ├── cinder.js │ │ │ ├── foundation.magellan.js │ │ │ ├── foundation.min.js │ │ │ ├── iframeResizer.contentWindow.min.js │ │ │ ├── iframeResizer.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── lunr.min.js │ │ │ ├── prism.js │ │ │ ├── searchPage.js │ │ │ └── underscore.min.js │ ├── _docs │ │ ├── Channel │ │ │ └── Channel.html │ │ ├── Path2d │ │ │ ├── Path2dDescription.html │ │ │ ├── cinder_logo_bw.svg │ │ │ └── test.js │ │ ├── XmlTree.html │ │ ├── gl │ │ │ └── Fbo.html │ │ ├── log │ │ │ └── Logger.html │ │ └── surface-description.html │ ├── _templates │ │ ├── class-description.mustache │ │ ├── class-list.mustache │ │ ├── enum-markup.mustache │ │ ├── footer.mustache.bak │ │ ├── function-markup.mustache │ │ ├── glm-reference.mustache │ │ ├── master-template.mustache │ │ ├── meta.mustache.bak │ │ ├── namespace-list.mustache │ │ ├── namespace-subnav.mustache │ │ ├── page-class-template.mustache │ │ ├── page-default-template.mustache │ │ ├── page-group-template.mustache │ │ ├── page-guide-navlist-template.mustache │ │ ├── page-guide-template.mustache │ │ ├── page-home-template.mustache │ │ ├── page-namespace-template.mustache │ │ ├── page-reference-template.mustache │ │ ├── side-nav.mustache │ │ ├── side-static.mustache │ │ └── subnav.mustache │ ├── ci_tag_test.html │ ├── classes.html │ ├── guides │ │ ├── _common │ │ │ ├── css │ │ │ │ └── cinder.css │ │ │ ├── images │ │ │ │ ├── close.png │ │ │ │ ├── logo.png │ │ │ │ ├── next.png │ │ │ │ └── prev.png │ │ │ └── js │ │ │ │ ├── jquery-1.4.2.min.js │ │ │ │ ├── jquery.lightbox-0.5.css │ │ │ │ └── jquery.lightbox-0.5.pack.js │ │ ├── _start-here │ │ │ ├── config.json │ │ │ └── start-here.html │ │ ├── anatomy │ │ │ ├── images │ │ │ │ └── CinderLoop.png │ │ │ └── index.html │ │ ├── android-notes │ │ │ └── index.html │ │ ├── audio │ │ │ ├── config.json │ │ │ ├── images │ │ │ │ ├── audio_layers.png │ │ │ │ ├── audio_sample_analyzer.png │ │ │ │ └── audio_sample_bufferplayback.png │ │ │ └── index.html │ │ ├── boost │ │ │ ├── images │ │ │ │ └── cinder_finder.png │ │ │ └── index.html │ │ ├── cinder-blocks │ │ │ ├── images │ │ │ │ ├── 2.png │ │ │ │ ├── cinderblock.png │ │ │ │ └── template.png │ │ │ └── index.html │ │ ├── cinder-images │ │ │ ├── config.json │ │ │ ├── images │ │ │ │ ├── images_buffer.jpg │ │ │ │ ├── images_byteNumberStrip.png │ │ │ │ ├── images_byteStrip.png │ │ │ │ ├── images_channelPanel.jpg │ │ │ │ ├── images_clampRepeat.png │ │ │ │ ├── images_edgeDetect.png │ │ │ │ ├── images_gridPixelView.png │ │ │ │ ├── images_iterator.png │ │ │ │ ├── images_mask.jpg │ │ │ │ ├── images_mipmap.png │ │ │ │ ├── images_mipmapCompare.png │ │ │ │ ├── images_pipeline.png │ │ │ │ ├── images_screensaver_10_7.png │ │ │ │ └── images_twirl.png │ │ │ └── index.html │ │ ├── cmake │ │ │ └── cmake.html │ │ ├── dependencies │ │ │ └── index.html │ │ ├── docs │ │ │ ├── building_docs.html │ │ │ ├── documenting_cinder.html │ │ │ └── images │ │ │ │ ├── doxygen.png │ │ │ │ ├── related_links.png │ │ │ │ └── terminal.png │ │ ├── flocking │ │ │ ├── chapter1.html │ │ │ ├── chapter2.html │ │ │ ├── chapter3.html │ │ │ ├── chapter4.html │ │ │ ├── chapter5.html │ │ │ └── images │ │ │ │ ├── 3706256557_a98ab377d1_b.jpg │ │ │ │ ├── 4527424956_9962a3d979_o.jpg │ │ │ │ ├── camLayout.jpg │ │ │ │ ├── camPersp.jpg │ │ │ │ ├── camVectors.jpg │ │ │ │ ├── chapter1.jpg │ │ │ │ ├── chapter2.jpg │ │ │ │ ├── chapter3a.jpg │ │ │ │ ├── chapter3b.jpg │ │ │ │ ├── chapter4a.jpg │ │ │ │ ├── chapter4b.jpg │ │ │ │ ├── chapter5a.jpg │ │ │ │ ├── chapter5b.jpg │ │ │ │ ├── cos.jpg │ │ │ │ ├── curve1.jpg │ │ │ │ ├── curve2.jpg │ │ │ │ ├── curve3.jpg │ │ │ │ ├── params.jpg │ │ │ │ ├── params2.jpg │ │ │ │ ├── rule1.jpg │ │ │ │ ├── rule2.jpg │ │ │ │ └── rule3.jpg │ │ ├── git │ │ │ ├── images │ │ │ │ ├── git-windows-cmd.png │ │ │ │ └── mac_build.png │ │ │ └── index.html │ │ ├── gl │ │ │ └── fbo │ │ │ │ └── index.html │ │ ├── graphics │ │ │ ├── index.html │ │ │ └── threeup.png │ │ ├── index.html │ │ ├── ios-notes │ │ │ └── index.html │ │ ├── linux-notes │ │ │ ├── index.html │ │ │ ├── jetsontk1.html │ │ │ ├── rpi2.html │ │ │ ├── rpi3.html │ │ │ ├── rpi4.html │ │ │ └── ubuntu.html │ │ ├── logging │ │ │ └── index.html │ │ ├── mac-setup │ │ │ ├── images │ │ │ │ ├── TinderBox.png │ │ │ │ ├── TinderBox_fifth.png │ │ │ │ ├── TinderBox_first.png │ │ │ │ ├── TinderBox_fourth.png │ │ │ │ ├── TinderBox_second.png │ │ │ │ ├── TinderBox_third.png │ │ │ │ ├── addedframeworks.png │ │ │ │ ├── addexistingframeworks.png │ │ │ │ ├── build_config.png │ │ │ │ ├── buildmenu.png │ │ │ │ ├── cinder_finder.png │ │ │ │ ├── cinderuservar.png │ │ │ │ ├── cubemapping_sample.jpg │ │ │ │ ├── deletefromxcode.png │ │ │ │ ├── headersearch.png │ │ │ │ ├── linkersettings.png │ │ │ │ ├── newcppfile.png │ │ │ │ ├── newcppfilename.png │ │ │ │ ├── newprojfinder.png │ │ │ │ ├── newprojsave.png │ │ │ │ ├── newxcodeproj.png │ │ │ │ └── userdefinedsetting.png │ │ │ └── index.html │ │ ├── movie-writer │ │ │ ├── images │ │ │ │ ├── qtime_settings.png │ │ │ │ └── qtime_settings_small.png │ │ │ └── index.html │ │ ├── opengl │ │ │ ├── config.json │ │ │ ├── further_reading.html │ │ │ ├── images │ │ │ │ ├── 3d_transform.mp4 │ │ │ │ ├── basic_cube.png │ │ │ │ ├── basic_grad.png │ │ │ │ ├── basic_transformations.png │ │ │ │ ├── blank.png │ │ │ │ ├── books │ │ │ │ │ ├── red.png │ │ │ │ │ └── superbible.jpg │ │ │ │ ├── cameraPersp.jpg │ │ │ │ ├── circle.png │ │ │ │ ├── circle_transformations.png │ │ │ │ ├── clouds.jpg │ │ │ │ ├── clouds_example.jpg │ │ │ │ ├── ease.png │ │ │ │ ├── first_shader.png │ │ │ │ ├── fixed_sphere.png │ │ │ │ ├── geom_sources.png │ │ │ │ ├── multi_transformations.png │ │ │ │ ├── multi_transformations_wrong.png │ │ │ │ ├── no_z_sphere.png │ │ │ │ ├── rgb_circles.png │ │ │ │ ├── rotating_stack.mp4 │ │ │ │ ├── shader_offset.png │ │ │ │ ├── shader_texture_basic.jpg │ │ │ │ ├── sites │ │ │ │ │ └── learnopengl_com.jpg │ │ │ │ ├── sphere_spiral.png │ │ │ │ ├── textured_sphere.png │ │ │ │ └── uniform_planes.png │ │ │ ├── index.html │ │ │ ├── part1.html │ │ │ ├── part2.html │ │ │ ├── part3.html │ │ │ ├── part4.html │ │ │ └── part5.html │ │ ├── osx-notes │ │ │ └── index.html │ │ ├── path2d │ │ │ ├── ZeroClipboard.swf │ │ │ ├── _tut_part1.html │ │ │ ├── _tut_part2.html │ │ │ ├── _tut_part3.html │ │ │ ├── config.json │ │ │ ├── iframeResizer.contentWindow.min.js │ │ │ ├── iframeResizer.min.js │ │ │ ├── part1.html │ │ │ ├── part2.html │ │ │ ├── part3.html │ │ │ ├── path2d.css │ │ │ ├── path2dpart1.js │ │ │ ├── path2dpart2.js │ │ │ ├── path2dpart3.js │ │ │ └── prism.css │ │ ├── platforms-preproc │ │ │ ├── index.html │ │ │ └── preproc-notes │ │ │ │ └── platforms.svg │ │ ├── resources │ │ │ ├── images │ │ │ │ ├── resources_file_structure.png │ │ │ │ ├── resources_itunes_mac.png │ │ │ │ ├── resources_itunes_mac_show_package.png │ │ │ │ ├── resources_mac_add_resource.png │ │ │ │ ├── resources_mac_build_phase.png │ │ │ │ └── resources_msw_add.png │ │ │ └── index.html │ │ ├── tinderbox │ │ │ ├── images │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── cinderblock_install.png │ │ │ │ ├── results.png │ │ │ │ └── tinderbox_logo.png │ │ │ └── index.html │ │ ├── tour │ │ │ ├── hello_cinder.html │ │ │ ├── hello_cinder_chapter1.html │ │ │ ├── hello_cinder_chapter2.html │ │ │ ├── hello_cinder_chapter3.html │ │ │ ├── hello_cinder_chapter4.html │ │ │ ├── hello_cinder_chapter5.html │ │ │ └── images │ │ │ │ ├── 3706256557_a98ab377d1_b.jpg │ │ │ │ ├── 4527424956_9962a3d979_o.jpg │ │ │ │ ├── camLayout.jpg │ │ │ │ ├── camPersp.jpg │ │ │ │ ├── camVectors.jpg │ │ │ │ ├── chapter1.jpg │ │ │ │ ├── chapter2.jpg │ │ │ │ ├── chapter3a.jpg │ │ │ │ ├── chapter3b.jpg │ │ │ │ ├── chapter4a.jpg │ │ │ │ ├── chapter4b.jpg │ │ │ │ ├── chapter5a.jpg │ │ │ │ ├── chapter5b.jpg │ │ │ │ ├── cos.jpg │ │ │ │ ├── curve1.jpg │ │ │ │ ├── curve2.jpg │ │ │ │ ├── curve3.jpg │ │ │ │ ├── params.jpg │ │ │ │ ├── params2.jpg │ │ │ │ ├── rule1.jpg │ │ │ │ ├── rule2.jpg │ │ │ │ ├── rule3.jpg │ │ │ │ ├── tutorial_part1_00.png │ │ │ │ ├── tutorial_part1_01.jpg │ │ │ │ ├── tutorial_part1_02.png │ │ │ │ ├── tutorial_part1_03.png │ │ │ │ ├── tutorial_part2_01.png │ │ │ │ ├── tutorial_part2_02.png │ │ │ │ ├── tutorial_part2_03.png │ │ │ │ ├── tutorial_part2_04.png │ │ │ │ ├── tutorial_part2_05.png │ │ │ │ ├── tutorial_part2_06.png │ │ │ │ ├── tutorial_part2_07.png │ │ │ │ ├── tutorial_part3_01.png │ │ │ │ ├── tutorial_part3_02.png │ │ │ │ ├── tutorial_part3_03.jpg │ │ │ │ ├── tutorial_part3_04.jpg │ │ │ │ ├── tutorial_part3_05.png │ │ │ │ ├── tutorial_part4_01.mov │ │ │ │ ├── tutorial_part4_01.png │ │ │ │ ├── tutorial_part4_02.png │ │ │ │ ├── tutorial_part4_03.png │ │ │ │ ├── tutorial_part4_04.png │ │ │ │ ├── tutorial_part5_01.mov │ │ │ │ ├── tutorial_part5_01.png │ │ │ │ ├── tutorial_part5_02.mov │ │ │ │ ├── tutorial_part5_02.png │ │ │ │ └── tutorial_tour_location_shot.png │ │ ├── transition_0_9 │ │ │ ├── index.html │ │ │ └── teapot.jpg │ │ ├── windows-notes │ │ │ ├── index.html │ │ │ └── msw_notes │ │ │ │ ├── forced_includes.png │ │ │ │ ├── solution_dir_include.png │ │ │ │ ├── vc_target.png │ │ │ │ └── vc_toolset.png │ │ ├── windows-setup │ │ │ ├── MSWNewProject.html │ │ │ ├── images │ │ │ │ ├── TinderBox_fifth.png │ │ │ │ ├── TinderBox_first.png │ │ │ │ ├── TinderBox_fourth.png │ │ │ │ ├── TinderBox_second.png │ │ │ │ ├── applicationsettings.png │ │ │ │ ├── batchbuild.png │ │ │ │ ├── batchbuild_thumb.png │ │ │ │ ├── compilesettings.png │ │ │ │ ├── cubemapping_sample.jpg │ │ │ │ ├── dxsetup1 copy.jpg │ │ │ │ ├── dxsetup1.jpg │ │ │ │ ├── explorersetup.png │ │ │ │ ├── folders.png │ │ │ │ ├── msvc │ │ │ │ │ ├── step1.png │ │ │ │ │ └── step1_thumb.png │ │ │ │ ├── newcppfile.png │ │ │ │ └── newproject.png │ │ │ └── index.html │ │ └── xml-tree │ │ │ └── index.html │ ├── index.html │ ├── namespaces.html │ ├── reference │ │ ├── 2dgraphics.html │ │ ├── application.html │ │ ├── audio.html │ │ ├── geometry.html │ │ ├── glm.html │ │ ├── images.html │ │ ├── index.html │ │ ├── math.html │ │ ├── opengl.html │ │ ├── platform.html │ │ ├── system.html │ │ └── video.html │ ├── search.html │ └── search_test.html ├── image_masters │ ├── CinderLoop.ai │ ├── black_type_logo.ai │ ├── black_type_logo.pdf │ ├── black_type_logo.png │ ├── black_type_logo_icon_master.png │ ├── cinder_app_icon.ico │ ├── cinder_app_icon.png │ └── platforms.graphml ├── libs │ ├── __init__.py │ ├── bs4 │ │ ├── __init__.py │ │ ├── builder │ │ │ ├── __init__.py │ │ │ ├── _html5lib.py │ │ │ ├── _htmlparser.py │ │ │ └── _lxml.py │ │ ├── dammit.py │ │ ├── diagnose.py │ │ ├── element.py │ │ ├── testing.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_builder_registry.py │ │ │ ├── test_docs.py │ │ │ ├── test_html5lib.py │ │ │ ├── test_htmlparser.py │ │ │ ├── test_lxml.py │ │ │ ├── test_soup.py │ │ │ └── test_tree.py │ ├── markdown │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __version__.py │ │ ├── blockparser.py │ │ ├── blockprocessors.py │ │ ├── extensions │ │ │ ├── __init__.py │ │ │ ├── abbr.py │ │ │ ├── admonition.py │ │ │ ├── attr_list.py │ │ │ ├── codehilite.py │ │ │ ├── def_list.py │ │ │ ├── extra.py │ │ │ ├── fenced_code.py │ │ │ ├── footnotes.py │ │ │ ├── headerid.py │ │ │ ├── meta.py │ │ │ ├── nl2br.py │ │ │ ├── sane_lists.py │ │ │ ├── smart_strong.py │ │ │ ├── smarty.py │ │ │ ├── tables.py │ │ │ ├── toc.py │ │ │ └── wikilinks.py │ │ ├── inlinepatterns.py │ │ ├── odict.py │ │ ├── postprocessors.py │ │ ├── preprocessors.py │ │ ├── serializers.py │ │ ├── treeprocessors.py │ │ └── util.py │ └── pystache │ │ ├── __init__.py │ │ ├── commands │ │ ├── __init__.py │ │ ├── render.py │ │ └── test.py │ │ ├── common.py │ │ ├── context.py │ │ ├── defaults.py │ │ ├── init.py │ │ ├── loader.py │ │ ├── locator.py │ │ ├── parsed.py │ │ ├── parser.py │ │ ├── renderengine.py │ │ ├── renderer.py │ │ ├── specloader.py │ │ ├── template_spec.py │ │ └── tests │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── common.py │ │ ├── data │ │ ├── __init__.py │ │ ├── ascii.mustache │ │ ├── duplicate.mustache │ │ ├── locator │ │ │ ├── __init__.py │ │ │ ├── duplicate.mustache │ │ │ └── template.txt │ │ ├── non_ascii.mustache │ │ ├── sample_view.mustache │ │ ├── say_hello.mustache │ │ └── views.py │ │ ├── doctesting.py │ │ ├── examples │ │ ├── __init__.py │ │ ├── comments.mustache │ │ ├── comments.py │ │ ├── complex.mustache │ │ ├── complex.py │ │ ├── delimiters.mustache │ │ ├── delimiters.py │ │ ├── double_section.mustache │ │ ├── double_section.py │ │ ├── escaped.mustache │ │ ├── escaped.py │ │ ├── inner_partial.mustache │ │ ├── inner_partial.txt │ │ ├── inverted.mustache │ │ ├── inverted.py │ │ ├── lambdas.mustache │ │ ├── lambdas.py │ │ ├── looping_partial.mustache │ │ ├── nested_context.mustache │ │ ├── nested_context.py │ │ ├── partial_in_partial.mustache │ │ ├── partial_with_lambda.mustache │ │ ├── partial_with_partial_and_lambda.mustache │ │ ├── partials_with_lambdas.py │ │ ├── readme.py │ │ ├── say_hello.mustache │ │ ├── simple.mustache │ │ ├── simple.py │ │ ├── tagless.mustache │ │ ├── template_partial.mustache │ │ ├── template_partial.py │ │ ├── template_partial.txt │ │ ├── unescaped.mustache │ │ ├── unescaped.py │ │ ├── unicode_input.mustache │ │ ├── unicode_input.py │ │ ├── unicode_output.mustache │ │ └── unicode_output.py │ │ ├── main.py │ │ ├── spectesting.py │ │ ├── test___init__.py │ │ ├── test_commands.py │ │ ├── test_context.py │ │ ├── test_defaults.py │ │ ├── test_examples.py │ │ ├── test_loader.py │ │ ├── test_locator.py │ │ ├── test_parser.py │ │ ├── test_pystache.py │ │ ├── test_renderengine.py │ │ ├── test_renderer.py │ │ ├── test_simple.py │ │ └── test_specloader.py ├── md2html.py ├── misc_images │ └── android │ │ ├── NDK_default.png │ │ ├── NDK_location.png │ │ └── ss │ │ ├── Cube.png │ │ ├── CubeMapping.png │ │ ├── Geometry.png │ │ ├── NormalMapping.png │ │ ├── NormalMappingBasic.png │ │ ├── TextTest.png │ │ └── TextureFont.png ├── readme.md ├── stylesrc │ ├── gulpfile.js │ ├── package.json │ └── stylus │ │ ├── cinder_docs.styl │ │ ├── code.styl │ │ ├── global.styl │ │ ├── helpers.styl │ │ └── index.styl └── template_test.py ├── include ├── ANGLE │ ├── EGL │ │ ├── egl.h │ │ ├── eglext.h │ │ └── eglplatform.h │ ├── GLES2 │ │ ├── gl2.h │ │ ├── gl2ext.h │ │ └── gl2platform.h │ ├── GLES3 │ │ ├── gl3.h │ │ ├── gl3ext.h │ │ └── gl3platform.h │ ├── GLSLANG │ │ ├── ShaderLang.h │ │ └── ShaderVars.h │ ├── KHR │ │ └── khrplatform.h │ ├── angle_gl.h │ └── angle_windowsstore.h ├── EGL-Registry │ ├── EGL │ │ ├── egl.h │ │ ├── eglext.h │ │ └── eglplatform.h │ └── KHR │ │ └── khrplatform.h ├── KHR │ └── khrplatform.h ├── asio │ ├── any_completion_executor.hpp │ ├── any_completion_handler.hpp │ ├── any_io_executor.hpp │ ├── append.hpp │ ├── as_tuple.hpp │ ├── asio.hpp │ ├── associated_allocator.hpp │ ├── associated_cancellation_slot.hpp │ ├── associated_executor.hpp │ ├── associated_immediate_executor.hpp │ ├── associator.hpp │ ├── async_result.hpp │ ├── awaitable.hpp │ ├── basic_datagram_socket.hpp │ ├── basic_deadline_timer.hpp │ ├── basic_file.hpp │ ├── basic_io_object.hpp │ ├── basic_random_access_file.hpp │ ├── basic_raw_socket.hpp │ ├── basic_readable_pipe.hpp │ ├── basic_seq_packet_socket.hpp │ ├── basic_serial_port.hpp │ ├── basic_signal_set.hpp │ ├── basic_socket.hpp │ ├── basic_socket_acceptor.hpp │ ├── basic_socket_iostream.hpp │ ├── basic_socket_streambuf.hpp │ ├── basic_stream_file.hpp │ ├── basic_stream_socket.hpp │ ├── basic_streambuf.hpp │ ├── basic_streambuf_fwd.hpp │ ├── basic_waitable_timer.hpp │ ├── basic_writable_pipe.hpp │ ├── bind_allocator.hpp │ ├── bind_cancellation_slot.hpp │ ├── bind_executor.hpp │ ├── bind_immediate_executor.hpp │ ├── buffer.hpp │ ├── buffer_registration.hpp │ ├── buffered_read_stream.hpp │ ├── buffered_read_stream_fwd.hpp │ ├── buffered_stream.hpp │ ├── buffered_stream_fwd.hpp │ ├── buffered_write_stream.hpp │ ├── buffered_write_stream_fwd.hpp │ ├── buffers_iterator.hpp │ ├── cancel_after.hpp │ ├── cancel_at.hpp │ ├── cancellation_signal.hpp │ ├── cancellation_state.hpp │ ├── cancellation_type.hpp │ ├── co_composed.hpp │ ├── co_spawn.hpp │ ├── completion_condition.hpp │ ├── compose.hpp │ ├── composed.hpp │ ├── config.hpp │ ├── connect.hpp │ ├── connect_pipe.hpp │ ├── consign.hpp │ ├── coroutine.hpp │ ├── deadline_timer.hpp │ ├── default_completion_token.hpp │ ├── defer.hpp │ ├── deferred.hpp │ ├── detached.hpp │ ├── detail │ │ ├── array.hpp │ │ ├── array_fwd.hpp │ │ ├── assert.hpp │ │ ├── atomic_count.hpp │ │ ├── base_from_cancellation_state.hpp │ │ ├── base_from_completion_cond.hpp │ │ ├── bind_handler.hpp │ │ ├── blocking_executor_op.hpp │ │ ├── buffer_resize_guard.hpp │ │ ├── buffer_sequence_adapter.hpp │ │ ├── buffered_stream_storage.hpp │ │ ├── call_stack.hpp │ │ ├── chrono.hpp │ │ ├── chrono_time_traits.hpp │ │ ├── completion_handler.hpp │ │ ├── completion_message.hpp │ │ ├── completion_payload.hpp │ │ ├── completion_payload_handler.hpp │ │ ├── composed_work.hpp │ │ ├── concurrency_hint.hpp │ │ ├── conditionally_enabled_event.hpp │ │ ├── conditionally_enabled_mutex.hpp │ │ ├── config.hpp │ │ ├── consuming_buffers.hpp │ │ ├── cstddef.hpp │ │ ├── cstdint.hpp │ │ ├── date_time_fwd.hpp │ │ ├── deadline_timer_service.hpp │ │ ├── dependent_type.hpp │ │ ├── descriptor_ops.hpp │ │ ├── descriptor_read_op.hpp │ │ ├── descriptor_write_op.hpp │ │ ├── dev_poll_reactor.hpp │ │ ├── epoll_reactor.hpp │ │ ├── event.hpp │ │ ├── eventfd_select_interrupter.hpp │ │ ├── exception.hpp │ │ ├── executor_function.hpp │ │ ├── executor_op.hpp │ │ ├── fd_set_adapter.hpp │ │ ├── fenced_block.hpp │ │ ├── functional.hpp │ │ ├── future.hpp │ │ ├── global.hpp │ │ ├── handler_alloc_helpers.hpp │ │ ├── handler_cont_helpers.hpp │ │ ├── handler_tracking.hpp │ │ ├── handler_type_requirements.hpp │ │ ├── handler_work.hpp │ │ ├── hash_map.hpp │ │ ├── impl │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ ├── descriptor_ops.ipp │ │ │ ├── dev_poll_reactor.hpp │ │ │ ├── dev_poll_reactor.ipp │ │ │ ├── epoll_reactor.hpp │ │ │ ├── epoll_reactor.ipp │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ ├── handler_tracking.ipp │ │ │ ├── io_uring_descriptor_service.ipp │ │ │ ├── io_uring_file_service.ipp │ │ │ ├── io_uring_service.hpp │ │ │ ├── io_uring_service.ipp │ │ │ ├── io_uring_socket_service_base.ipp │ │ │ ├── kqueue_reactor.hpp │ │ │ ├── kqueue_reactor.ipp │ │ │ ├── null_event.ipp │ │ │ ├── pipe_select_interrupter.ipp │ │ │ ├── posix_event.ipp │ │ │ ├── posix_mutex.ipp │ │ │ ├── posix_serial_port_service.ipp │ │ │ ├── posix_thread.ipp │ │ │ ├── posix_tss_ptr.ipp │ │ │ ├── reactive_descriptor_service.ipp │ │ │ ├── reactive_socket_service_base.ipp │ │ │ ├── resolver_service_base.ipp │ │ │ ├── resolver_thread_pool.ipp │ │ │ ├── scheduler.ipp │ │ │ ├── select_reactor.hpp │ │ │ ├── select_reactor.ipp │ │ │ ├── service_registry.hpp │ │ │ ├── service_registry.ipp │ │ │ ├── signal_set_service.ipp │ │ │ ├── socket_ops.ipp │ │ │ ├── socket_select_interrupter.ipp │ │ │ ├── strand_executor_service.hpp │ │ │ ├── strand_executor_service.ipp │ │ │ ├── strand_service.hpp │ │ │ ├── strand_service.ipp │ │ │ ├── thread_context.ipp │ │ │ ├── throw_error.ipp │ │ │ ├── timer_queue_set.ipp │ │ │ ├── win_event.ipp │ │ │ ├── win_iocp_file_service.ipp │ │ │ ├── win_iocp_handle_service.ipp │ │ │ ├── win_iocp_io_context.hpp │ │ │ ├── win_iocp_io_context.ipp │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ ├── win_mutex.ipp │ │ │ ├── win_object_handle_service.ipp │ │ │ ├── win_static_mutex.ipp │ │ │ ├── win_thread.ipp │ │ │ ├── win_tss_ptr.ipp │ │ │ ├── winrt_ssocket_service_base.ipp │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ └── winsock_init.ipp │ │ ├── initiate_defer.hpp │ │ ├── initiate_dispatch.hpp │ │ ├── initiate_post.hpp │ │ ├── initiation_base.hpp │ │ ├── io_control.hpp │ │ ├── io_object_impl.hpp │ │ ├── io_uring_descriptor_read_at_op.hpp │ │ ├── io_uring_descriptor_read_op.hpp │ │ ├── io_uring_descriptor_service.hpp │ │ ├── io_uring_descriptor_write_at_op.hpp │ │ ├── io_uring_descriptor_write_op.hpp │ │ ├── io_uring_file_service.hpp │ │ ├── io_uring_null_buffers_op.hpp │ │ ├── io_uring_operation.hpp │ │ ├── io_uring_service.hpp │ │ ├── io_uring_socket_accept_op.hpp │ │ ├── io_uring_socket_connect_op.hpp │ │ ├── io_uring_socket_recv_op.hpp │ │ ├── io_uring_socket_recvfrom_op.hpp │ │ ├── io_uring_socket_recvmsg_op.hpp │ │ ├── io_uring_socket_send_op.hpp │ │ ├── io_uring_socket_sendto_op.hpp │ │ ├── io_uring_socket_service.hpp │ │ ├── io_uring_socket_service_base.hpp │ │ ├── io_uring_wait_op.hpp │ │ ├── is_buffer_sequence.hpp │ │ ├── is_executor.hpp │ │ ├── keyword_tss_ptr.hpp │ │ ├── kqueue_reactor.hpp │ │ ├── limits.hpp │ │ ├── local_free_on_block_exit.hpp │ │ ├── memory.hpp │ │ ├── mutex.hpp │ │ ├── non_const_lvalue.hpp │ │ ├── noncopyable.hpp │ │ ├── null_event.hpp │ │ ├── null_fenced_block.hpp │ │ ├── null_global.hpp │ │ ├── null_mutex.hpp │ │ ├── null_reactor.hpp │ │ ├── null_signal_blocker.hpp │ │ ├── null_socket_service.hpp │ │ ├── null_static_mutex.hpp │ │ ├── null_thread.hpp │ │ ├── null_tss_ptr.hpp │ │ ├── object_pool.hpp │ │ ├── old_win_sdk_compat.hpp │ │ ├── op_queue.hpp │ │ ├── operation.hpp │ │ ├── pipe_select_interrupter.hpp │ │ ├── pop_options.hpp │ │ ├── posix_event.hpp │ │ ├── posix_fd_set_adapter.hpp │ │ ├── posix_global.hpp │ │ ├── posix_mutex.hpp │ │ ├── posix_serial_port_service.hpp │ │ ├── posix_signal_blocker.hpp │ │ ├── posix_static_mutex.hpp │ │ ├── posix_thread.hpp │ │ ├── posix_tss_ptr.hpp │ │ ├── push_options.hpp │ │ ├── reactive_descriptor_service.hpp │ │ ├── reactive_null_buffers_op.hpp │ │ ├── reactive_socket_accept_op.hpp │ │ ├── reactive_socket_connect_op.hpp │ │ ├── reactive_socket_recv_op.hpp │ │ ├── reactive_socket_recvfrom_op.hpp │ │ ├── reactive_socket_recvmsg_op.hpp │ │ ├── reactive_socket_send_op.hpp │ │ ├── reactive_socket_sendto_op.hpp │ │ ├── reactive_socket_service.hpp │ │ ├── reactive_socket_service_base.hpp │ │ ├── reactive_wait_op.hpp │ │ ├── reactor.hpp │ │ ├── reactor_op.hpp │ │ ├── reactor_op_queue.hpp │ │ ├── recycling_allocator.hpp │ │ ├── regex_fwd.hpp │ │ ├── resolve_endpoint_op.hpp │ │ ├── resolve_op.hpp │ │ ├── resolve_query_op.hpp │ │ ├── resolver_service.hpp │ │ ├── resolver_service_base.hpp │ │ ├── resolver_thread_pool.hpp │ │ ├── scheduler.hpp │ │ ├── scheduler_operation.hpp │ │ ├── scheduler_task.hpp │ │ ├── scheduler_thread_info.hpp │ │ ├── scoped_lock.hpp │ │ ├── scoped_ptr.hpp │ │ ├── select_interrupter.hpp │ │ ├── select_reactor.hpp │ │ ├── service_registry.hpp │ │ ├── signal_blocker.hpp │ │ ├── signal_handler.hpp │ │ ├── signal_init.hpp │ │ ├── signal_op.hpp │ │ ├── signal_set_service.hpp │ │ ├── socket_holder.hpp │ │ ├── socket_ops.hpp │ │ ├── socket_option.hpp │ │ ├── socket_select_interrupter.hpp │ │ ├── socket_types.hpp │ │ ├── source_location.hpp │ │ ├── static_mutex.hpp │ │ ├── std_event.hpp │ │ ├── std_fenced_block.hpp │ │ ├── std_global.hpp │ │ ├── std_mutex.hpp │ │ ├── std_static_mutex.hpp │ │ ├── std_thread.hpp │ │ ├── strand_executor_service.hpp │ │ ├── strand_service.hpp │ │ ├── string_view.hpp │ │ ├── thread.hpp │ │ ├── thread_context.hpp │ │ ├── thread_group.hpp │ │ ├── thread_info_base.hpp │ │ ├── throw_error.hpp │ │ ├── throw_exception.hpp │ │ ├── timed_cancel_op.hpp │ │ ├── timer_queue.hpp │ │ ├── timer_queue_base.hpp │ │ ├── timer_queue_set.hpp │ │ ├── timer_scheduler.hpp │ │ ├── timer_scheduler_fwd.hpp │ │ ├── tss_ptr.hpp │ │ ├── type_traits.hpp │ │ ├── utility.hpp │ │ ├── wait_handler.hpp │ │ ├── wait_op.hpp │ │ ├── win_event.hpp │ │ ├── win_fd_set_adapter.hpp │ │ ├── win_global.hpp │ │ ├── win_iocp_file_service.hpp │ │ ├── win_iocp_handle_read_op.hpp │ │ ├── win_iocp_handle_service.hpp │ │ ├── win_iocp_handle_write_op.hpp │ │ ├── win_iocp_io_context.hpp │ │ ├── win_iocp_null_buffers_op.hpp │ │ ├── win_iocp_operation.hpp │ │ ├── win_iocp_overlapped_op.hpp │ │ ├── win_iocp_overlapped_ptr.hpp │ │ ├── win_iocp_serial_port_service.hpp │ │ ├── win_iocp_socket_accept_op.hpp │ │ ├── win_iocp_socket_connect_op.hpp │ │ ├── win_iocp_socket_recv_op.hpp │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ ├── win_iocp_socket_send_op.hpp │ │ ├── win_iocp_socket_service.hpp │ │ ├── win_iocp_socket_service_base.hpp │ │ ├── win_iocp_thread_info.hpp │ │ ├── win_iocp_wait_op.hpp │ │ ├── win_mutex.hpp │ │ ├── win_object_handle_service.hpp │ │ ├── win_static_mutex.hpp │ │ ├── win_thread.hpp │ │ ├── win_tss_ptr.hpp │ │ ├── winapp_thread.hpp │ │ ├── wince_thread.hpp │ │ ├── winrt_async_manager.hpp │ │ ├── winrt_async_op.hpp │ │ ├── winrt_resolve_op.hpp │ │ ├── winrt_resolver_service.hpp │ │ ├── winrt_socket_connect_op.hpp │ │ ├── winrt_socket_recv_op.hpp │ │ ├── winrt_socket_send_op.hpp │ │ ├── winrt_ssocket_service.hpp │ │ ├── winrt_ssocket_service_base.hpp │ │ ├── winrt_timer_scheduler.hpp │ │ ├── winrt_utils.hpp │ │ ├── winsock_init.hpp │ │ ├── work_dispatcher.hpp │ │ └── wrapped_handler.hpp │ ├── dispatch.hpp │ ├── disposition.hpp │ ├── error.hpp │ ├── error_code.hpp │ ├── execution.hpp │ ├── execution │ │ ├── allocator.hpp │ │ ├── any_executor.hpp │ │ ├── bad_executor.hpp │ │ ├── blocking.hpp │ │ ├── blocking_adaptation.hpp │ │ ├── context.hpp │ │ ├── context_as.hpp │ │ ├── executor.hpp │ │ ├── impl │ │ │ └── bad_executor.ipp │ │ ├── invocable_archetype.hpp │ │ ├── mapping.hpp │ │ ├── occupancy.hpp │ │ ├── outstanding_work.hpp │ │ ├── prefer_only.hpp │ │ └── relationship.hpp │ ├── execution_context.hpp │ ├── executor.hpp │ ├── executor_work_guard.hpp │ ├── experimental │ │ ├── as_single.hpp │ │ ├── awaitable_operators.hpp │ │ ├── basic_channel.hpp │ │ ├── basic_concurrent_channel.hpp │ │ ├── cancellation_condition.hpp │ │ ├── channel.hpp │ │ ├── channel_error.hpp │ │ ├── channel_traits.hpp │ │ ├── co_composed.hpp │ │ ├── co_spawn.hpp │ │ ├── concurrent_channel.hpp │ │ ├── coro.hpp │ │ ├── coro_traits.hpp │ │ ├── detail │ │ │ ├── channel_operation.hpp │ │ │ ├── channel_receive_op.hpp │ │ │ ├── channel_send_functions.hpp │ │ │ ├── channel_send_op.hpp │ │ │ ├── channel_service.hpp │ │ │ ├── coro_completion_handler.hpp │ │ │ ├── coro_promise_allocator.hpp │ │ │ ├── has_signature.hpp │ │ │ ├── impl │ │ │ │ └── channel_service.hpp │ │ │ └── partial_promise.hpp │ │ ├── impl │ │ │ ├── as_single.hpp │ │ │ ├── channel_error.ipp │ │ │ ├── coro.hpp │ │ │ ├── parallel_group.hpp │ │ │ ├── promise.hpp │ │ │ ├── use_coro.hpp │ │ │ └── use_promise.hpp │ │ ├── parallel_group.hpp │ │ ├── promise.hpp │ │ ├── use_coro.hpp │ │ └── use_promise.hpp │ ├── file_base.hpp │ ├── generic │ │ ├── basic_endpoint.hpp │ │ ├── datagram_protocol.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ └── impl │ │ │ │ └── endpoint.ipp │ │ ├── raw_protocol.hpp │ │ ├── seq_packet_protocol.hpp │ │ └── stream_protocol.hpp │ ├── handler_continuation_hook.hpp │ ├── high_resolution_timer.hpp │ ├── immediate.hpp │ ├── impl │ │ ├── any_completion_executor.ipp │ │ ├── any_io_executor.ipp │ │ ├── append.hpp │ │ ├── as_tuple.hpp │ │ ├── awaitable.hpp │ │ ├── awaitable.ipp │ │ ├── buffered_read_stream.hpp │ │ ├── buffered_write_stream.hpp │ │ ├── cancel_after.hpp │ │ ├── cancel_at.hpp │ │ ├── cancellation_signal.ipp │ │ ├── co_spawn.hpp │ │ ├── config.hpp │ │ ├── config.ipp │ │ ├── connect.hpp │ │ ├── connect_pipe.hpp │ │ ├── connect_pipe.ipp │ │ ├── consign.hpp │ │ ├── deferred.hpp │ │ ├── detached.hpp │ │ ├── error.ipp │ │ ├── error_code.ipp │ │ ├── execution_context.hpp │ │ ├── execution_context.ipp │ │ ├── executor.hpp │ │ ├── executor.ipp │ │ ├── io_context.hpp │ │ ├── io_context.ipp │ │ ├── multiple_exceptions.ipp │ │ ├── prepend.hpp │ │ ├── read.hpp │ │ ├── read_at.hpp │ │ ├── read_until.hpp │ │ ├── redirect_error.hpp │ │ ├── serial_port_base.hpp │ │ ├── serial_port_base.ipp │ │ ├── spawn.hpp │ │ ├── src.hpp │ │ ├── system_context.hpp │ │ ├── system_context.ipp │ │ ├── system_executor.hpp │ │ ├── thread_pool.hpp │ │ ├── thread_pool.ipp │ │ ├── use_awaitable.hpp │ │ ├── use_future.hpp │ │ ├── write.hpp │ │ └── write_at.hpp │ ├── io_context.hpp │ ├── io_context_strand.hpp │ ├── ip │ │ ├── address.hpp │ │ ├── address_v4.hpp │ │ ├── address_v4_iterator.hpp │ │ ├── address_v4_range.hpp │ │ ├── address_v6.hpp │ │ ├── address_v6_iterator.hpp │ │ ├── address_v6_range.hpp │ │ ├── bad_address_cast.hpp │ │ ├── basic_endpoint.hpp │ │ ├── basic_resolver.hpp │ │ ├── basic_resolver_entry.hpp │ │ ├── basic_resolver_iterator.hpp │ │ ├── basic_resolver_query.hpp │ │ ├── basic_resolver_results.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ ├── impl │ │ │ │ └── endpoint.ipp │ │ │ └── socket_option.hpp │ │ ├── host_name.hpp │ │ ├── icmp.hpp │ │ ├── impl │ │ │ ├── address.hpp │ │ │ ├── address.ipp │ │ │ ├── address_v4.hpp │ │ │ ├── address_v4.ipp │ │ │ ├── address_v6.hpp │ │ │ ├── address_v6.ipp │ │ │ ├── basic_endpoint.hpp │ │ │ ├── host_name.ipp │ │ │ ├── network_v4.hpp │ │ │ ├── network_v4.ipp │ │ │ ├── network_v6.hpp │ │ │ └── network_v6.ipp │ │ ├── multicast.hpp │ │ ├── network_v4.hpp │ │ ├── network_v6.hpp │ │ ├── resolver_base.hpp │ │ ├── resolver_query_base.hpp │ │ ├── tcp.hpp │ │ ├── udp.hpp │ │ ├── unicast.hpp │ │ └── v6_only.hpp │ ├── is_applicable_property.hpp │ ├── is_contiguous_iterator.hpp │ ├── is_executor.hpp │ ├── is_read_buffered.hpp │ ├── is_write_buffered.hpp │ ├── local │ │ ├── basic_endpoint.hpp │ │ ├── connect_pair.hpp │ │ ├── datagram_protocol.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ └── impl │ │ │ │ └── endpoint.ipp │ │ ├── seq_packet_protocol.hpp │ │ └── stream_protocol.hpp │ ├── multiple_exceptions.hpp │ ├── packaged_task.hpp │ ├── placeholders.hpp │ ├── posix │ │ ├── basic_descriptor.hpp │ │ ├── basic_stream_descriptor.hpp │ │ ├── descriptor.hpp │ │ ├── descriptor_base.hpp │ │ └── stream_descriptor.hpp │ ├── post.hpp │ ├── prefer.hpp │ ├── prepend.hpp │ ├── query.hpp │ ├── random_access_file.hpp │ ├── read.hpp │ ├── read_at.hpp │ ├── read_until.hpp │ ├── readable_pipe.hpp │ ├── recycling_allocator.hpp │ ├── redirect_error.hpp │ ├── registered_buffer.hpp │ ├── require.hpp │ ├── require_concept.hpp │ ├── serial_port.hpp │ ├── serial_port_base.hpp │ ├── signal_set.hpp │ ├── signal_set_base.hpp │ ├── socket_base.hpp │ ├── spawn.hpp │ ├── ssl.hpp │ ├── ssl │ │ ├── context.hpp │ │ ├── context_base.hpp │ │ ├── detail │ │ │ ├── buffered_handshake_op.hpp │ │ │ ├── engine.hpp │ │ │ ├── handshake_op.hpp │ │ │ ├── impl │ │ │ │ ├── engine.ipp │ │ │ │ └── openssl_init.ipp │ │ │ ├── io.hpp │ │ │ ├── openssl_init.hpp │ │ │ ├── openssl_types.hpp │ │ │ ├── password_callback.hpp │ │ │ ├── read_op.hpp │ │ │ ├── shutdown_op.hpp │ │ │ ├── stream_core.hpp │ │ │ ├── verify_callback.hpp │ │ │ └── write_op.hpp │ │ ├── error.hpp │ │ ├── host_name_verification.hpp │ │ ├── impl │ │ │ ├── context.hpp │ │ │ ├── context.ipp │ │ │ ├── error.ipp │ │ │ ├── host_name_verification.ipp │ │ │ └── src.hpp │ │ ├── stream.hpp │ │ ├── stream_base.hpp │ │ ├── verify_context.hpp │ │ └── verify_mode.hpp │ ├── static_thread_pool.hpp │ ├── steady_timer.hpp │ ├── strand.hpp │ ├── stream_file.hpp │ ├── streambuf.hpp │ ├── system_context.hpp │ ├── system_error.hpp │ ├── system_executor.hpp │ ├── system_timer.hpp │ ├── this_coro.hpp │ ├── thread.hpp │ ├── thread_pool.hpp │ ├── time_traits.hpp │ ├── traits │ │ ├── equality_comparable.hpp │ │ ├── execute_member.hpp │ │ ├── prefer_free.hpp │ │ ├── prefer_member.hpp │ │ ├── query_free.hpp │ │ ├── query_member.hpp │ │ ├── query_static_constexpr_member.hpp │ │ ├── require_concept_free.hpp │ │ ├── require_concept_member.hpp │ │ ├── require_free.hpp │ │ ├── require_member.hpp │ │ ├── static_query.hpp │ │ ├── static_require.hpp │ │ └── static_require_concept.hpp │ ├── ts │ │ ├── buffer.hpp │ │ ├── executor.hpp │ │ ├── internet.hpp │ │ ├── io_context.hpp │ │ ├── net.hpp │ │ ├── netfwd.hpp │ │ ├── socket.hpp │ │ └── timer.hpp │ ├── unyield.hpp │ ├── use_awaitable.hpp │ ├── use_future.hpp │ ├── uses_executor.hpp │ ├── version.hpp │ ├── wait_traits.hpp │ ├── windows │ │ ├── basic_object_handle.hpp │ │ ├── basic_overlapped_handle.hpp │ │ ├── basic_random_access_handle.hpp │ │ ├── basic_stream_handle.hpp │ │ ├── object_handle.hpp │ │ ├── overlapped_handle.hpp │ │ ├── overlapped_ptr.hpp │ │ ├── random_access_handle.hpp │ │ └── stream_handle.hpp │ ├── writable_pipe.hpp │ ├── write.hpp │ ├── write_at.hpp │ └── yield.hpp ├── cinder │ ├── Arcball.h │ ├── Area.h │ ├── AxisAlignedBox.h │ ├── BSpline.h │ ├── BSplineFit.h │ ├── BandedMatrix.h │ ├── Base64.h │ ├── Breakpoint.h │ ├── Buffer.h │ ├── Camera.h │ ├── CameraUi.h │ ├── CanvasUi.h │ ├── Capture.h │ ├── CaptureImplAvFoundation.h │ ├── CaptureImplCocoaDummy.h │ ├── CaptureImplDirectShow.h │ ├── CaptureImplGStreamer.h │ ├── CaptureImplJni.h │ ├── ChanTraits.h │ ├── Channel.h │ ├── Cinder.h │ ├── CinderAssert.h │ ├── CinderFwd.h │ ├── CinderGlm.h │ ├── CinderImGui.h │ ├── CinderImGuiConfig.h │ ├── CinderMath.h │ ├── CinderResources.h │ ├── Clipboard.h │ ├── Color.h │ ├── ConcurrentCircularBuffer.h │ ├── CurrentFunction.h │ ├── DataSource.h │ ├── DataTarget.h │ ├── Display.h │ ├── Easing.h │ ├── Exception.h │ ├── Export.h │ ├── FileWatcher.h │ ├── Filesystem.h │ ├── Filter.h │ ├── Font.h │ ├── Frustum.h │ ├── Function.h │ ├── GeomIo.h │ ├── ImageFileTinyExr.h │ ├── ImageIo.h │ ├── ImageSourceFileQoi.h │ ├── ImageSourceFileQuartz.h │ ├── ImageSourceFileRadiance.h │ ├── ImageSourceFileStbImage.h │ ├── ImageSourceFileWic.h │ ├── ImageSourcePng.h │ ├── ImageTargetFileQoi.h │ ├── ImageTargetFileQuartz.h │ ├── ImageTargetFileStbImage.h │ ├── ImageTargetFileWic.h │ ├── Json.h │ ├── JsonTree.h │ ├── KdTree.h │ ├── Log.h │ ├── Matrix.h │ ├── Matrix22.h │ ├── Matrix33.h │ ├── Matrix44.h │ ├── MediaTime.h │ ├── Noncopyable.h │ ├── ObjLoader.h │ ├── Path2d.h │ ├── Perlin.h │ ├── Plane.h │ ├── PolyLine.h │ ├── Quaternion.h │ ├── Rand.h │ ├── Ray.h │ ├── Rect.h │ ├── Serial.h │ ├── Shape2d.h │ ├── Signals.h │ ├── Sphere.h │ ├── Stream.h │ ├── Surface.h │ ├── System.h │ ├── Text.h │ ├── Thread.h │ ├── Timeline.h │ ├── TimelineItem.h │ ├── Timer.h │ ├── TriMesh.h │ ├── Triangulate.h │ ├── Tween.h │ ├── Unicode.h │ ├── Url.h │ ├── UrlImplCocoa.h │ ├── UrlImplCurl.h │ ├── UrlImplJni.h │ ├── UrlImplNull.h │ ├── UrlImplWinInet.h │ ├── Utilities.h │ ├── Vector.h │ ├── Xml.h │ ├── android │ │ ├── AndroidDevLog.h │ │ ├── CinderAndroid.h │ │ ├── JniHelper.h │ │ ├── LogCatStream.h │ │ ├── app │ │ │ ├── CinderNativeActivity.h │ │ │ ├── ComponentManager.h │ │ │ └── Permissions.h │ │ ├── hardware │ │ │ └── Camera.h │ │ ├── libc_helper.h │ │ ├── net │ │ │ └── UrlLoader.h │ │ └── video │ │ │ ├── MovieGl.h │ │ │ └── VideoPlayer.h │ ├── app │ │ ├── App.h │ │ ├── AppBase.h │ │ ├── AppScreenSaver.h │ │ ├── Event.h │ │ ├── FileDropEvent.h │ │ ├── KeyEvent.h │ │ ├── MouseEvent.h │ │ ├── Platform.h │ │ ├── Renderer.h │ │ ├── RendererD3d11.h │ │ ├── RendererDx.h │ │ ├── RendererGl.h │ │ ├── RendererMetal.h │ │ ├── TouchEvent.h │ │ ├── Window.h │ │ ├── android │ │ │ ├── AppAndroid.h │ │ │ ├── AppImplAndroid.h │ │ │ ├── AssetFileSystem.h │ │ │ ├── EventManagerAndroid.h │ │ │ ├── PlatformAndroid.h │ │ │ ├── Renderer2dAndroid.h │ │ │ ├── RendererGlAndroid.h │ │ │ ├── WindowImplAndroid.h │ │ │ └── android_native_app_glue.h │ │ ├── cocoa │ │ │ ├── AppCocoaTouch.h │ │ │ ├── AppImplCocoaTouch.h │ │ │ ├── AppMac.h │ │ │ ├── CinderViewCocoaTouch.h │ │ │ ├── PlatformCocoa.h │ │ │ ├── RendererImpl2dCocoaTouchQuartz.h │ │ │ ├── RendererImpl2dMacQuartz.h │ │ │ └── RendererImplGlCocoaTouch.h │ │ ├── glfw │ │ │ ├── AppGlfw.h │ │ │ ├── AppImplGlfw.h │ │ │ ├── AppImplGlfwMac.h │ │ │ ├── RendererGlGlfw.h │ │ │ ├── RendererImplGlfw.h │ │ │ ├── RendererImplGlfwGl.h │ │ │ ├── RendererImplGlfwMetal.h │ │ │ └── WindowImplGlfw.h │ │ ├── linux │ │ │ ├── AppImplLinux.h │ │ │ ├── AppLinux.h │ │ │ ├── PlatformLinux.h │ │ │ ├── RendererGlLinux.h │ │ │ └── WindowImplLinux.h │ │ └── msw │ │ │ ├── AppImplMsw.h │ │ │ ├── AppImplMswBasic.h │ │ │ ├── AppImplMswScreenSaver.h │ │ │ ├── AppMsw.h │ │ │ ├── PlatformMsw.h │ │ │ ├── RendererImpl2dGdi.h │ │ │ ├── RendererImplD3d11.h │ │ │ ├── RendererImplDx.h │ │ │ ├── RendererImplGlAngle.h │ │ │ ├── RendererImplGlMsw.h │ │ │ └── RendererImplMsw.h │ ├── audio │ │ ├── Buffer.h │ │ ├── ChannelRouterNode.h │ │ ├── Context.h │ │ ├── DelayNode.h │ │ ├── Device.h │ │ ├── Exception.h │ │ ├── FileOggVorbis.h │ │ ├── FilterNode.h │ │ ├── GainNode.h │ │ ├── GenNode.h │ │ ├── InputNode.h │ │ ├── MonitorNode.h │ │ ├── Node.h │ │ ├── NodeEffects.h │ │ ├── NodeMath.h │ │ ├── OutputNode.h │ │ ├── PanNode.h │ │ ├── Param.h │ │ ├── SamplePlayerNode.h │ │ ├── SampleRecorderNode.h │ │ ├── SampleType.h │ │ ├── Source.h │ │ ├── Target.h │ │ ├── Utilities.h │ │ ├── Voice.h │ │ ├── WaveTable.h │ │ ├── WaveformType.h │ │ ├── android │ │ │ ├── ContextOpenSl.h │ │ │ └── DeviceManagerOpenSl.h │ │ ├── audio.h │ │ ├── cocoa │ │ │ ├── CinderCoreAudio.h │ │ │ ├── ContextAudioUnit.h │ │ │ ├── DeviceManagerAudioSession.h │ │ │ ├── DeviceManagerCoreAudio.h │ │ │ └── FileCoreAudio.h │ │ ├── dsp │ │ │ ├── Biquad.h │ │ │ ├── Converter.h │ │ │ ├── ConverterR8brain.h │ │ │ ├── Dsp.h │ │ │ ├── Fft.h │ │ │ ├── RingBuffer.h │ │ │ └── ooura │ │ │ │ └── fftsg.h │ │ ├── linux │ │ │ ├── ContextJack.h │ │ │ ├── ContextPulseAudio.h │ │ │ ├── DeviceManagerJack.h │ │ │ ├── DeviceManagerPulseAudio.h │ │ │ └── FileAudioLoader.h │ │ └── msw │ │ │ ├── ContextWasapi.h │ │ │ ├── DeviceManagerWasapi.h │ │ │ ├── FileMediaFoundation.h │ │ │ └── MswUtil.h │ ├── cocoa │ │ ├── CinderCocoa.h │ │ └── CinderCocoaTouch.h │ ├── gl │ │ ├── Batch.h │ │ ├── BufferObj.h │ │ ├── BufferTexture.h │ │ ├── ConstantConversions.h │ │ ├── Context.h │ │ ├── Environment.h │ │ ├── Fbo.h │ │ ├── GlslProg.h │ │ ├── Pbo.h │ │ ├── Query.h │ │ ├── Sampler.h │ │ ├── Shader.h │ │ ├── ShaderPreprocessor.h │ │ ├── Ssbo.h │ │ ├── Sync.h │ │ ├── Texture.h │ │ ├── TextureFont.h │ │ ├── TextureFormatParsers.h │ │ ├── TransformFeedbackObj.h │ │ ├── Ubo.h │ │ ├── Vao.h │ │ ├── Vbo.h │ │ ├── VboMesh.h │ │ ├── draw.h │ │ ├── gl.h │ │ ├── nv │ │ │ └── Multicast.h │ │ ├── platform.h │ │ ├── scoped.h │ │ └── wrapper.h │ ├── ip │ │ ├── Blend.h │ │ ├── Blur.h │ │ ├── Checkerboard.h │ │ ├── EdgeDetect.h │ │ ├── Fill.h │ │ ├── Flip.h │ │ ├── Grayscale.h │ │ ├── Hdr.h │ │ ├── Premultiply.h │ │ ├── Resize.h │ │ ├── Threshold.h │ │ └── Trim.h │ ├── linux │ │ ├── FreeTypeUtil.h │ │ ├── GstPlayer.h │ │ ├── Movie.h │ │ └── input_redef.h │ ├── msw │ │ ├── CinderMsw.h │ │ ├── CinderMswGdiPlus.h │ │ ├── CinderWindowsFwd.h │ │ ├── OutputDebugStringStream.h │ │ └── StackWalker.h │ ├── qtime │ │ ├── AvfUtils.h │ │ ├── AvfWriter.h │ │ ├── MovieWriter.h │ │ ├── QuickTime.h │ │ ├── QuickTimeGl.h │ │ ├── QuickTimeGlImplAvf.h │ │ ├── QuickTimeGlImplLegacy.h │ │ ├── QuickTimeImplAvf.h │ │ ├── QuickTimeImplLegacy.h │ │ └── QuickTimeUtils.h │ └── svg │ │ ├── Svg.h │ │ └── SvgGl.h ├── circular │ └── circular.h ├── freetype │ ├── config │ │ ├── ftconfig.h │ │ ├── ftheader.h │ │ ├── ftmodule.h │ │ ├── ftoption.h │ │ └── ftstdlib.h │ ├── freetype.h │ ├── ft2build.h │ ├── ftadvanc.h │ ├── ftbbox.h │ ├── ftbdf.h │ ├── ftbitmap.h │ ├── ftbzip2.h │ ├── ftcache.h │ ├── ftchapters.h │ ├── ftcid.h │ ├── ftdriver.h │ ├── fterrdef.h │ ├── fterrors.h │ ├── ftfntfmt.h │ ├── ftgasp.h │ ├── ftglyph.h │ ├── ftgxval.h │ ├── ftgzip.h │ ├── ftimage.h │ ├── ftincrem.h │ ├── ftlcdfil.h │ ├── ftlist.h │ ├── ftlzw.h │ ├── ftmac.h │ ├── ftmm.h │ ├── ftmodapi.h │ ├── ftmoderr.h │ ├── ftotval.h │ ├── ftoutln.h │ ├── ftparams.h │ ├── ftpfr.h │ ├── ftrender.h │ ├── ftsizes.h │ ├── ftsnames.h │ ├── ftstroke.h │ ├── ftsynth.h │ ├── ftsystem.h │ ├── fttrigon.h │ ├── fttypes.h │ ├── ftwinfnt.h │ ├── internal │ │ ├── autohint.h │ │ ├── cffotypes.h │ │ ├── cfftypes.h │ │ ├── ftcalc.h │ │ ├── ftdebug.h │ │ ├── ftdrv.h │ │ ├── ftgloadr.h │ │ ├── fthash.h │ │ ├── ftmemory.h │ │ ├── ftobjs.h │ │ ├── ftpic.h │ │ ├── ftpsprop.h │ │ ├── ftrfork.h │ │ ├── ftserv.h │ │ ├── ftstream.h │ │ ├── fttrace.h │ │ ├── ftvalid.h │ │ ├── internal.h │ │ ├── psaux.h │ │ ├── pshints.h │ │ ├── services │ │ │ ├── svbdf.h │ │ │ ├── svcfftl.h │ │ │ ├── svcid.h │ │ │ ├── svfntfmt.h │ │ │ ├── svgldict.h │ │ │ ├── svgxval.h │ │ │ ├── svkern.h │ │ │ ├── svmetric.h │ │ │ ├── svmm.h │ │ │ ├── svotval.h │ │ │ ├── svpfr.h │ │ │ ├── svpostnm.h │ │ │ ├── svprop.h │ │ │ ├── svpscmap.h │ │ │ ├── svpsinfo.h │ │ │ ├── svsfnt.h │ │ │ ├── svttcmap.h │ │ │ ├── svtteng.h │ │ │ ├── svttglyf.h │ │ │ └── svwinfnt.h │ │ ├── sfnt.h │ │ ├── t1types.h │ │ └── tttypes.h │ ├── t1tables.h │ ├── ttnameid.h │ ├── tttables.h │ └── tttags.h ├── ghc │ ├── filesystem.hpp │ ├── fs_fwd.hpp │ └── fs_impl.hpp ├── glad │ ├── glad.h │ ├── glad_es.h │ ├── glad_glx.h │ └── glad_wgl.h ├── glfw │ ├── glfw3.h │ └── glfw3native.h ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── compute_common.hpp │ │ ├── compute_vector_relational.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── qualifier.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_mat4x4_simd.inl │ │ ├── type_quat.hpp │ │ ├── type_quat.inl │ │ ├── type_quat_simd.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ └── type_vec4_simd.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── ext │ │ ├── matrix_clip_space.hpp │ │ ├── matrix_clip_space.inl │ │ ├── matrix_common.hpp │ │ ├── matrix_common.inl │ │ ├── matrix_double2x2.hpp │ │ ├── matrix_double2x2_precision.hpp │ │ ├── matrix_double2x3.hpp │ │ ├── matrix_double2x3_precision.hpp │ │ ├── matrix_double2x4.hpp │ │ ├── matrix_double2x4_precision.hpp │ │ ├── matrix_double3x2.hpp │ │ ├── matrix_double3x2_precision.hpp │ │ ├── matrix_double3x3.hpp │ │ ├── matrix_double3x3_precision.hpp │ │ ├── matrix_double3x4.hpp │ │ ├── matrix_double3x4_precision.hpp │ │ ├── matrix_double4x2.hpp │ │ ├── matrix_double4x2_precision.hpp │ │ ├── matrix_double4x3.hpp │ │ ├── matrix_double4x3_precision.hpp │ │ ├── matrix_double4x4.hpp │ │ ├── matrix_double4x4_precision.hpp │ │ ├── matrix_float2x2.hpp │ │ ├── matrix_float2x2_precision.hpp │ │ ├── matrix_float2x3.hpp │ │ ├── matrix_float2x3_precision.hpp │ │ ├── matrix_float2x4.hpp │ │ ├── matrix_float2x4_precision.hpp │ │ ├── matrix_float3x2.hpp │ │ ├── matrix_float3x2_precision.hpp │ │ ├── matrix_float3x3.hpp │ │ ├── matrix_float3x3_precision.hpp │ │ ├── matrix_float3x4.hpp │ │ ├── matrix_float3x4_precision.hpp │ │ ├── matrix_float4x2.hpp │ │ ├── matrix_float4x2_precision.hpp │ │ ├── matrix_float4x3.hpp │ │ ├── matrix_float4x3_precision.hpp │ │ ├── matrix_float4x4.hpp │ │ ├── matrix_float4x4_precision.hpp │ │ ├── matrix_projection.hpp │ │ ├── matrix_projection.inl │ │ ├── matrix_relational.hpp │ │ ├── matrix_relational.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── quaternion_common.hpp │ │ ├── quaternion_common.inl │ │ ├── quaternion_common_simd.inl │ │ ├── quaternion_double.hpp │ │ ├── quaternion_double_precision.hpp │ │ ├── quaternion_exponential.hpp │ │ ├── quaternion_exponential.inl │ │ ├── quaternion_float.hpp │ │ ├── quaternion_float_precision.hpp │ │ ├── quaternion_geometric.hpp │ │ ├── quaternion_geometric.inl │ │ ├── quaternion_relational.hpp │ │ ├── quaternion_relational.inl │ │ ├── quaternion_transform.hpp │ │ ├── quaternion_transform.inl │ │ ├── quaternion_trigonometric.hpp │ │ ├── quaternion_trigonometric.inl │ │ ├── scalar_common.hpp │ │ ├── scalar_common.inl │ │ ├── scalar_constants.hpp │ │ ├── scalar_constants.inl │ │ ├── scalar_int_sized.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── scalar_uint_sized.hpp │ │ ├── scalar_ulp.hpp │ │ ├── scalar_ulp.inl │ │ ├── vector_bool1.hpp │ │ ├── vector_bool1_precision.hpp │ │ ├── vector_bool2.hpp │ │ ├── vector_bool2_precision.hpp │ │ ├── vector_bool3.hpp │ │ ├── vector_bool3_precision.hpp │ │ ├── vector_bool4.hpp │ │ ├── vector_bool4_precision.hpp │ │ ├── vector_common.hpp │ │ ├── vector_common.inl │ │ ├── vector_double1.hpp │ │ ├── vector_double1_precision.hpp │ │ ├── vector_double2.hpp │ │ ├── vector_double2_precision.hpp │ │ ├── vector_double3.hpp │ │ ├── vector_double3_precision.hpp │ │ ├── vector_double4.hpp │ │ ├── vector_double4_precision.hpp │ │ ├── vector_float1.hpp │ │ ├── vector_float1_precision.hpp │ │ ├── vector_float2.hpp │ │ ├── vector_float2_precision.hpp │ │ ├── vector_float3.hpp │ │ ├── vector_float3_precision.hpp │ │ ├── vector_float4.hpp │ │ ├── vector_float4_precision.hpp │ │ ├── vector_int1.hpp │ │ ├── vector_int1_precision.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_precision.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_precision.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_precision.hpp │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_precision.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_precision.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_precision.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_precision.hpp │ │ ├── vector_ulp.hpp │ │ └── vector_ulp.inl │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── quaternion_simd.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_aligned.hpp │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ └── vec1.hpp │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_encoding.hpp │ │ ├── color_encoding.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── easing.hpp │ │ ├── easing.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extended_min_max.hpp │ │ ├── extended_min_max.inl │ │ ├── exterior_product.hpp │ │ ├── exterior_product.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.inl │ │ ├── functions.hpp │ │ ├── functions.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── hash.hpp │ │ ├── hash.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_factorisation.hpp │ │ ├── matrix_factorisation.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── texture.hpp │ │ ├── texture.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── vec_swizzle.hpp │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── simd │ │ ├── common.h │ │ ├── exponential.h │ │ ├── geometric.h │ │ ├── integer.h │ │ ├── matrix.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── imgui │ ├── LICENSE.txt │ ├── imconfig.h │ ├── imgui.h │ ├── imgui_freetype.h │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_opengl3_loader.h │ ├── imgui_internal.h │ ├── imgui_stdlib.h │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── jsoncpp │ ├── json-forwards.h │ └── json.h ├── msw │ ├── CinderMswUserDefines.h │ ├── png │ │ ├── png.h │ │ ├── pngconf.h │ │ └── pnglibconf.h │ └── zlib │ │ ├── zconf.h │ │ └── zlib.h ├── nlohmann │ ├── adl_serializer.hpp │ ├── byte_container_with_subtype.hpp │ ├── detail │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ ├── json.hpp │ ├── json_fwd.hpp │ ├── ordered_map.hpp │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp ├── oggvorbis │ ├── ogg │ │ ├── config_types.h │ │ ├── ogg.h │ │ └── os_types.h │ └── vorbis │ │ ├── codec.h │ │ ├── vorbisenc.h │ │ └── vorbisfile.h ├── qoi │ └── qoi.h ├── rapidxml │ ├── rapidxml.hpp │ └── rapidxml_print.hpp ├── stb │ ├── stb_image.h │ └── stb_image_write.h ├── tinyexr │ └── tinyexr.h └── utf8cpp │ ├── checked.h │ ├── core.h │ └── unchecked.h ├── lib ├── android │ ├── android-19 │ │ ├── armeabi-v7a │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ │ ├── armeabi │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ │ ├── mips │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ │ └── x86 │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ ├── android-21 │ │ ├── arm64-v8a │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ │ ├── armeabi-v7a │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ │ ├── armeabi │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ │ ├── mips │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ │ ├── mips64 │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ │ ├── x86 │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ │ └── x86_64 │ │ │ ├── libboost_filesystem.a │ │ │ └── libboost_system.a │ ├── libcinder-debug.aar │ └── libcinder-release.aar └── msw │ └── x64 │ ├── d3dcompiler_46.dll │ ├── libEGL.dll │ ├── libEGL.lib │ ├── libGLESv2.dll │ ├── libGLESv2.lib │ └── libpng.lib ├── proj ├── android │ ├── CMakeLists.txt │ ├── cbuilder │ ├── es2-fullbuild │ ├── es2-fullbuild-arm64-v8a │ ├── es2-fullbuild-armeabi │ ├── es2-fullbuild-armeabi-v7a │ ├── es2-fullbuild-mips │ ├── es2-fullbuild-mips64 │ ├── es2-fullbuild-x86 │ ├── es2-fullbuild-x86_64 │ ├── fullbuild │ ├── fullbuild-arm64-v8a │ ├── fullbuild-armeabi │ ├── fullbuild-armeabi-v7a │ ├── fullbuild-mips │ ├── fullbuild-mips64 │ ├── fullbuild-x86 │ ├── fullbuild-x86_64 │ └── libcinder_java │ │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── org │ │ │ │ └── libcinder │ │ │ │ └── exampleapp │ │ │ │ ├── CameraDeviceListActivity.java │ │ │ │ ├── CameraOrientLockedActivity.java │ │ │ │ ├── CameraPreviewActivity.java │ │ │ │ ├── UrlLoaderActivity.java │ │ │ │ └── widgets │ │ │ │ └── DebugTextView.java │ │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_camera_devices_list.xml │ │ │ ├── activity_camera_orient_locked.xml │ │ │ ├── activity_camera_preview.xml │ │ │ └── activity_url_loader.xml │ │ │ ├── menu │ │ │ ├── menu_camera_orient_locked.xml │ │ │ └── menu_camera_preview.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v11 │ │ │ └── styles.xml │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── libcinder │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ └── settings.gradle ├── cmake │ ├── configure.cmake │ ├── libcinder_configure.cmake │ ├── libcinder_source_files.cmake │ ├── libcinder_target.cmake │ ├── modules │ │ ├── FindCLANG.cmake │ │ ├── FindCairo.cmake │ │ ├── FindFontConfig.cmake │ │ ├── FindFreetype2.cmake │ │ ├── FindGStreamer.cmake │ │ ├── FindGlib.cmake │ │ ├── FindMPG123.cmake │ │ ├── FindOSMesa.cmake │ │ ├── FindSNDFILE.cmake │ │ ├── cinderAndroidToolchain.cmake │ │ ├── cinderConfig.buildtree.cmake.in │ │ ├── cinderMakeApp.cmake │ │ └── findCMakeDirs.cmake │ ├── platform_android.cmake │ ├── platform_ios.cmake │ ├── platform_linux.cmake │ ├── platform_macosx.cmake │ ├── platform_msw.cmake │ └── utilities.cmake ├── vc2022 │ ├── cinder.sln │ ├── cinder.vcxproj │ ├── cinder.vcxproj.filters │ └── nlohmann_json.natvis └── xcode │ ├── cinder.xcodeproj │ └── project.pbxproj │ ├── cinder_Prefix.pch │ ├── fullbuild.sh │ ├── ios-build-xcpretty.sh │ ├── iossim-build-xcpretty.sh │ └── osx-build-xcpretty.sh ├── samples ├── ArcballDemo │ ├── androidstudio │ │ └── ArcballDemo │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── sample │ │ │ │ │ └── arcballdemo │ │ │ │ │ └── ArcballDemoActivity.java │ │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_arcball_demo.xml │ │ │ │ ├── menu │ │ │ │ └── menu_arcball_demo.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── ArcballDemoApp.cpp │ ├── vc2022 │ │ ├── ArcballDemo.sln │ │ ├── ArcballDemo.vcxproj │ │ ├── ArcballDemo.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── ArcballDemo.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ArcballDemo_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── ArcballDemo.xcodeproj │ │ └── project.pbxproj │ │ ├── ArcballDemo_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ └── Info.plist ├── BSpline │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── BSplineApp.cpp │ ├── vc2022 │ │ ├── BSpline.sln │ │ ├── BSpline.vcxproj │ │ ├── BSpline.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── BSpline.xcodeproj │ │ └── project.pbxproj │ │ ├── BSpline_Prefix.pch │ │ └── Info.plist ├── BasicApp │ ├── androidstudio │ │ └── BasicApp │ │ │ ├── BasicApp.iml │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── sample │ │ │ │ │ └── basicapp │ │ │ │ │ └── BasicAppActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ ├── CMakeLists.txt │ │ │ └── CMakeSettings.json │ ├── src │ │ └── BasicApp.cpp │ ├── vc2022 │ │ ├── BasicApp.sln │ │ ├── BasicApp.vcxproj │ │ ├── BasicApp.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── BasicApp.xcodeproj │ │ │ └── project.pbxproj │ │ ├── BasicApp_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── BasicApp.xcodeproj │ │ └── project.pbxproj │ │ ├── BasicApp_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ └── Info.plist ├── BasicAppMultiWindow │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── BasicAppMultiWindowApp.cpp │ ├── vc2022 │ │ ├── BasicAppMultiWindow.sln │ │ ├── BasicAppMultiWindow.vcxproj │ │ ├── BasicAppMultiWindow.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── BasicAppMultiWindow.xcodeproj │ │ └── project.pbxproj │ │ ├── BasicAppMultiWindow_Prefix.pch │ │ └── Info.plist ├── BezierPath │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── BezierPathApp.cpp │ ├── vc2022 │ │ ├── BezierPath.sln │ │ ├── BezierPath.vcxproj │ │ ├── BezierPath.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── BezierPath.xcodeproj │ │ └── project.pbxproj │ │ ├── BezierPath_Prefix.pch │ │ └── Info.plist ├── BezierPathIteration │ ├── assets │ │ └── black_type_logo.svg │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ └── BezierPathIterationApp.cpp │ ├── vc2022 │ │ ├── BezierPathIteration.sln │ │ ├── BezierPathIteration.vcxproj │ │ ├── BezierPathIteration.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── BezierPathIteration.xcodeproj │ │ │ └── project.pbxproj │ │ ├── BezierPathIteration_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── BezierPathIteration.xcodeproj │ │ └── project.pbxproj │ │ ├── BezierPathIteration_Prefix.pch │ │ ├── Default-568h@2x.png │ │ └── Info.plist ├── CairoBasic │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── CairoBasicApp.cpp │ ├── vc2022 │ │ ├── CairoBasic.sln │ │ ├── CairoBasic.vcxproj │ │ ├── CairoBasic.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── CairoBasic.xcodeproj │ │ └── project.pbxproj │ │ ├── CairoBasic_Prefix.pch │ │ └── Info.plist ├── CameraPersp │ ├── assets │ │ ├── objectshader.frag │ │ └── objectshader.vert │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── CameraPerspApp.cpp │ ├── vc2022 │ │ ├── CameraPersp.sln │ │ ├── CameraPersp.vcxproj │ │ ├── CameraPersp.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── CameraPersp.xcodeproj │ │ └── project.pbxproj │ │ ├── CameraPersp_Prefix.pch │ │ └── Info.plist ├── CanvasUi │ ├── include │ │ └── Resources.h │ ├── proj │ │ ├── cmake │ │ │ └── CMakeLists.txt │ │ ├── vc2022 │ │ │ ├── CanvasUi.sln │ │ │ ├── CanvasUi.vcxproj │ │ │ ├── CanvasUi.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── CanvasUi.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── CanvasUi_Prefix.pch │ │ │ └── Info.plist │ └── src │ │ └── CanvasUiApp.cpp ├── CanvasUiMinimap │ ├── include │ │ └── Resources.h │ ├── proj │ │ ├── cmake │ │ │ └── CMakeLists.txt │ │ ├── vc2022 │ │ │ ├── CanvasUiMinimap.sln │ │ │ ├── CanvasUiMinimap.vcxproj │ │ │ ├── CanvasUiMinimap.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── CanvasUiMinimap.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── CanvasUiMinimap_Prefix.pch │ │ │ └── Info.plist │ └── src │ │ └── CanvasUiMinimapApp.cpp ├── CaptureBasic │ ├── androidstudio │ │ └── CaptureBasic │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── samples │ │ │ │ │ └── capturebasic │ │ │ │ │ └── CaptureBasicActivity.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── CaptureBasicApp.cpp │ ├── vc2022 │ │ ├── CaptureBasic.sln │ │ ├── CaptureBasic.vcxproj │ │ ├── CaptureBasic.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── CaptureBasic.xcodeproj │ │ │ └── project.pbxproj │ │ ├── CaptureBasic_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── CaptureBasic.xcodeproj │ │ └── project.pbxproj │ │ ├── CaptureBasic_Prefix.pch │ │ ├── Default-568h@2x.png │ │ └── Info.plist ├── CaptureCube │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── CaptureCubeApp.cpp │ ├── vc2022 │ │ ├── CaptureCube.sln │ │ ├── CaptureCube.vcxproj │ │ └── CaptureCube.vcxproj.filters │ ├── xcode │ │ ├── CaptureCube.xcodeproj │ │ │ └── project.pbxproj │ │ ├── CaptureCube_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ └── Info.plist │ └── xcode_ios │ │ ├── CaptureCube.xcodeproj │ │ └── project.pbxproj │ │ ├── CaptureCube_Prefix.pch │ │ ├── Default-568h@2x.png │ │ └── Info.plist ├── ClipboardBasic │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ └── Icon.png │ ├── src │ │ └── ClipboardBasicApp.cpp │ ├── vc2022 │ │ ├── ClipboardBasic.sln │ │ ├── ClipboardBasic.vcxproj │ │ ├── ClipboardBasic.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── ClipboardBasic.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ClipboardBasic_Prefix.pch │ │ └── Info.plist │ └── xcode_iOS │ │ ├── ClipboardBasic_iOS-Info.plist │ │ ├── ClipboardBasic_iOS.xcodeproj │ │ └── project.pbxproj │ │ └── ClipboardBasic_iOS_Prefix.pch ├── Compass │ ├── assets │ │ └── directions.png │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ └── CompassApp.cpp │ └── xcode_ios │ │ ├── Compass.xcodeproj │ │ └── project.pbxproj │ │ ├── Compass_Prefix.pch │ │ ├── Default-568h@2x.png │ │ └── Info.plist ├── D3d11ImageBasic │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── D3d11ImageBasicApp.cpp │ └── vc2022 │ │ ├── D3d11ImageBasic.sln │ │ ├── D3d11ImageBasic.vcxproj │ │ ├── D3d11ImageBasic.vcxproj.filters │ │ └── Resources.rc ├── D3d11Triangle │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── D3d11TriangleApp.cpp │ └── vc2022 │ │ ├── D3d11Triangle.sln │ │ ├── D3d11Triangle.vcxproj │ │ └── D3d11Triangle.vcxproj.filters ├── Earthquake │ ├── include │ │ ├── Earth.h │ │ ├── POV.h │ │ ├── Quake.h │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── earth.frag │ │ ├── earth.vert │ │ ├── earthDiffuse.png │ │ ├── earthMask.png │ │ ├── earthNormal.png │ │ ├── quake.frag │ │ ├── quake.vert │ │ ├── stars.jpg │ │ └── stars.png │ ├── src │ │ ├── Earth.cpp │ │ ├── EarthquakeApp.cpp │ │ ├── POV.cpp │ │ └── Quake.cpp │ ├── vc2022 │ │ ├── Earthquake.sln │ │ ├── Earthquake.vcxproj │ │ ├── Earthquake.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── Earthquake.xcodeproj │ │ └── project.pbxproj │ │ ├── Earthquake_Prefix.pch │ │ └── Info.plist ├── EaseGallery │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── EaseGalleryApp.cpp │ ├── vc2022 │ │ ├── EaseGallery.sln │ │ ├── EaseGallery.vcxproj │ │ ├── EaseGallery.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── EaseGallery.xcodeproj │ │ └── project.pbxproj │ │ ├── EaseGallery_Prefix.pch │ │ └── Info.plist ├── Extrude │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ └── ExtrudeApp.cpp │ ├── vc2022 │ │ ├── Extrude.sln │ │ ├── Extrude.vcxproj │ │ ├── Extrude.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── Extrude.xcodeproj │ │ └── project.pbxproj │ │ ├── Extrude_Prefix.pch │ │ └── Info.plist ├── FallingGears │ ├── assets │ │ ├── background.jpg │ │ ├── config.json │ │ ├── gear1.png │ │ ├── gear2.png │ │ ├── gear3.png │ │ └── gear4.png │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ ├── AudioController.cpp │ │ ├── AudioController.h │ │ ├── Box2dUtils.cpp │ │ ├── Box2dUtils.h │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── FallingGearsApp.cpp │ │ ├── SceneController.cpp │ │ ├── SceneController.h │ │ ├── SceneObjects.cpp │ │ ├── SceneObjects.h │ │ ├── Synths.cpp │ │ └── Synths.h │ ├── vc2022 │ │ ├── FallingGears.sln │ │ ├── FallingGears.vcxproj │ │ ├── FallingGears.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── FallingGears.xcodeproj │ │ └── project.pbxproj │ │ ├── FallingGears_Prefix.pch │ │ └── Info.plist ├── FlickrTestMultithreaded │ ├── androidstudio │ │ └── FlickrTestMultithreaded │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── samples │ │ │ │ │ └── flickrtestmultithreaded │ │ │ │ │ └── FlickrTestMultithreadedActivity.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ └── settings.gradle │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── FlickrTestMultithreadedApp.cpp │ ├── vc2022 │ │ ├── FlickrTestMultithreaded.sln │ │ ├── FlickrTestMultithreaded.vcxproj │ │ ├── FlickrTestMultithreaded.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── FlickrTestMultithreaded.xcodeproj │ │ └── project.pbxproj │ │ ├── FlickrTestMultithreaded_Prefix.pch │ │ └── Info.plist ├── FontSample │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── FontSampleApp.cpp │ ├── vc2022 │ │ ├── FontSample.sln │ │ ├── FontSample.vcxproj │ │ ├── FontSample.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── FontSample.xcodeproj │ │ └── project.pbxproj │ │ ├── FontSample_Prefix.pch │ │ └── Info.plist ├── FrustumCulling │ ├── assets │ │ ├── models │ │ │ ├── heart.msh │ │ │ └── heart.obj │ │ └── shaders │ │ │ ├── phong.frag │ │ │ └── phong.vert │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ ├── CullableObject.cpp │ │ ├── CullableObject.h │ │ └── FrustumCullingApp.cpp │ ├── vc2022 │ │ ├── FrustumCulling.sln │ │ ├── FrustumCulling.vcxproj │ │ └── FrustumCulling.vcxproj.filters │ └── xcode │ │ ├── FrustumCulling.xcodeproj │ │ └── project.pbxproj │ │ ├── FrustumCulling_Prefix.pch │ │ └── Info.plist ├── Geometry │ ├── androidstudio │ │ └── Geometry │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── samples │ │ │ │ │ └── geometry │ │ │ │ │ └── GeometryActivity.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ └── settings.gradle │ ├── assets │ │ ├── phong.frag │ │ ├── phong.vert │ │ ├── phong_es2.frag │ │ ├── phong_es2.vert │ │ ├── stripes.jpg │ │ ├── wireframe.frag │ │ ├── wireframe.geom │ │ └── wireframe.vert │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── GeometryApp.cpp │ ├── vc2022 │ │ ├── Geometry.sln │ │ ├── Geometry.vcxproj │ │ ├── Geometry.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── Geometry.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Geometry_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Geometry.xcodeproj │ │ └── project.pbxproj │ │ ├── Geometry_Prefix.pch │ │ └── Info.plist ├── HighDensityDisplay │ ├── assets │ │ └── CinderAppIcon.png │ ├── include │ │ └── Resources.h │ ├── src │ │ └── HighDensityDisplayApp.cpp │ ├── vc2022 │ │ ├── HighDensityDisplay.sln │ │ ├── HighDensityDisplay.vcxproj │ │ ├── HighDensityDisplay.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── HighDensityDisplay.xcodeproj │ │ │ └── project.pbxproj │ │ ├── HighDensityDisplay_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── HighDensityDisplay.xcodeproj │ │ └── project.pbxproj │ │ ├── HighDensityDisplay_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ └── LaunchScreen.xib ├── ImGui │ ├── include │ │ └── Resources.h │ ├── proj │ │ ├── cmake │ │ │ └── CMakeLists.txt │ │ ├── vc2022 │ │ │ ├── ImGui.sln │ │ │ ├── ImGui.vcxproj │ │ │ ├── ImGui.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── ImGui.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── ImGui_Prefix.pch │ │ │ └── Info.plist │ └── src │ │ └── ImGuiApp.cpp ├── ImageFileBasic │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ ├── ImageFileBasicApp.cpp │ │ └── ImageFileBasicAppDX.cpp │ ├── vc2022 │ │ ├── ImageFileBasic.sln │ │ ├── ImageFileBasic.vcxproj │ │ ├── ImageFileBasic.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── ImageFileBasic.xcodeproj │ │ └── project.pbxproj │ │ ├── ImageFileBasic_Prefix.pch │ │ └── Info.plist ├── ImageHeightField │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── ImageHeightFieldApp.cpp │ ├── vc2022 │ │ ├── ImageHeightField.sln │ │ ├── ImageHeightField.vcxproj │ │ └── ImageHeightField.vcxproj.filters │ └── xcode │ │ ├── ImageHeightField.xcodeproj │ │ └── project.pbxproj │ │ ├── ImageHeightField_Prefix.pch │ │ └── Info.plist ├── Kaleidoscope │ ├── include │ │ ├── Resources.h │ │ ├── TextRibbon.h │ │ └── TrianglePiece.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── Asap-Regular.ttf │ │ ├── Icon.png │ │ └── Kreon-Bold.ttf │ ├── src │ │ ├── InstascopeApp.cpp │ │ ├── TextRibbon.cpp │ │ └── TrianglePiece.cpp │ ├── vc2022 │ │ ├── Instascope.sln │ │ ├── Instascope.vcxproj │ │ ├── Instascope.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── Info.plist │ │ ├── Instascope.xcodeproj │ │ │ └── project.pbxproj │ │ └── Instascope_Prefix.pch │ └── xcode_ios │ │ ├── Instascope-Info.plist │ │ ├── Instascope.xcodeproj │ │ └── project.pbxproj │ │ └── Instascope_Prefix.pch ├── LocationManager │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── CinderApp_ios.png │ │ └── earth.jpg │ ├── src │ │ └── LocationManagerApp.cpp │ ├── xcode │ │ ├── Info.plist │ │ ├── LocationManager.xcodeproj │ │ │ └── project.pbxproj │ │ └── LocationManager_Prefix.pch │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── LocationManager.xcodeproj │ │ └── project.pbxproj │ │ └── LocationManager_Prefix.pch ├── Logging │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── LoggingApp.cpp │ ├── vc2022 │ │ ├── Logging.sln │ │ ├── Logging.vcxproj │ │ ├── Logging.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── Info.plist │ │ ├── Logging.xcodeproj │ │ └── project.pbxproj │ │ └── Logging_Prefix.pch ├── MandelbrotGLSL │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── colors.png │ │ ├── mandelbrot.frag │ │ └── mandelbrot.vert │ ├── src │ │ └── MandelbrotGLSLApp.cpp │ ├── vc2022 │ │ ├── MandelbrotGLSL.sln │ │ ├── MandelbrotGLSL.vcxproj │ │ ├── MandelbrotGLSL.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── Info.plist │ │ ├── MandelbrotGLSL.xcodeproj │ │ └── project.pbxproj │ │ └── MandelbrotGLSL_Prefix.pch ├── MetalImageBasic │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── MetalImageBasicApp.mm │ └── xcode │ │ ├── Info.plist │ │ ├── MetalImageBasic.xcodeproj │ │ └── project.pbxproj │ │ ├── MetalImageBasic_Prefix.pch │ │ └── MetalTriangle_Prefix.pch ├── MetalTriangle │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── MetalTriangleApp.mm │ └── xcode │ │ ├── Info.plist │ │ ├── MetalTriangle.xcodeproj │ │ └── project.pbxproj │ │ └── MetalTriangle_Prefix.pch ├── MotionBasic │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ └── MotionBasicApp.cpp │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── MotionBasic.xcodeproj │ │ └── project.pbxproj │ │ └── MotionBasic_Prefix.pch ├── MultiTouchBasic │ ├── androidstudio │ │ └── MultiTouchBasic │ │ │ ├── MultiTouchBasic.iml │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── sample │ │ │ │ │ └── multitouchbasic │ │ │ │ │ └── MultiTouchBasicActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── MultiTouchBasicApp.cpp │ ├── vc2022 │ │ ├── MultiTouchBasic.sln │ │ └── MultiTouchBasic.vcxproj │ ├── xcode │ │ ├── MultiTouchBasic-Info.plist │ │ ├── MultiTouchBasic.xcodeproj │ │ │ └── project.pbxproj │ │ └── MultiTouchBasic_Prefix.pch │ └── xcode_ios │ │ ├── MultiTouchBasic-Info.plist │ │ ├── MultiTouchBasic.xcodeproj │ │ └── project.pbxproj │ │ └── MultiTouchBasic_Prefix.pch ├── Picking3D │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── Picking3DApp.cpp │ ├── vc2022 │ │ ├── Picking3D.sln │ │ ├── Picking3D.vcxproj │ │ ├── Picking3D.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── Info.plist │ │ ├── Picking3D.xcodeproj │ │ └── project.pbxproj │ │ └── Picking3D_Prefix.pch ├── QuaternionAccum │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── Plane.png │ │ └── Stripe.png │ ├── src │ │ └── QuaternionAccumApp.cpp │ ├── vc2022 │ │ ├── QuaternionAccum.sln │ │ ├── QuaternionAccum.vcxproj │ │ ├── QuaternionAccum.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── Info.plist │ │ ├── QuaternionAccum.xcodeproj │ │ └── project.pbxproj │ │ └── QuaternionAccum_Prefix.pch ├── QuickTimeAdvanced │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── QTimeAdvApp.cpp │ └── xcode │ │ ├── Info.plist │ │ ├── QTimeAdvApp.xcodeproj │ │ └── project.pbxproj │ │ └── QTimeAdvApp_Prefix.pch ├── QuickTimeAvfWriter │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── MovieWriterApp.cpp │ ├── xcode │ │ ├── Info.plist │ │ ├── MovieWriter.xcodeproj │ │ │ └── project.pbxproj │ │ └── MovieWriter_Prefix.pch │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ ├── MovieWriter.xcodeproj │ │ └── project.pbxproj │ │ └── MovieWriter_Prefix.pch ├── QuickTimeBasic │ ├── androidstudio │ │ └── QuickTimeBasic │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── samples │ │ │ │ │ └── quicktimebasic │ │ │ │ │ └── QuickTimeBasicActivity.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ └── settings.gradle │ ├── assets │ │ └── bbb.mp4 │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── QuickTimeBasicApp.cpp │ └── xcode │ │ ├── Info.plist │ │ ├── QuickTimeBasic.xcodeproj │ │ └── project.pbxproj │ │ └── QuickTimeBasic_Prefix.pch ├── QuickTimeIteration │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── QuickTimeIterationApp.cpp │ └── xcode │ │ ├── Info.plist │ │ ├── QuickTimeIteration.xcodeproj │ │ └── project.pbxproj │ │ └── QuickTimeIteration_Prefix.pch ├── RDiffusion │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── gsrd_frag.glsl │ │ ├── passThru_vert.glsl │ │ └── starter.jpg │ ├── src │ │ └── RDiffusionApp.cpp │ ├── vc2022 │ │ ├── RDiffusion.sln │ │ ├── RDiffusion.vcxproj │ │ ├── RDiffusion.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── Info.plist │ │ ├── RDiffusion.xcodeproj │ │ └── project.pbxproj │ │ └── RDiffusion_Prefix.pch ├── Renderer2dBasic │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ └── Renderer2dApp.cpp │ ├── vc2022 │ │ ├── Renderer2d.sln │ │ ├── Renderer2d.vcxproj │ │ ├── Renderer2d.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── Info.plist │ │ ├── Renderer2d.xcodeproj │ │ │ └── project.pbxproj │ │ └── Renderer2d_Prefix.pch │ └── xcode_ios │ │ ├── Info.plist │ │ ├── Renderer2d.xcodeproj │ │ └── project.pbxproj │ │ └── Renderer2d_Prefix.pch ├── SaveImage │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── SaveImageApp.cpp │ ├── vc2022 │ │ ├── SaveImage.sln │ │ ├── SaveImage.vcxproj │ │ └── SaveImage.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── SaveImage.xcodeproj │ │ └── project.pbxproj │ │ └── SaveImage_Prefix.pch ├── SerialCommunication │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── SerialCommunicationApp.cpp │ ├── vc2022 │ │ ├── SerialCommunication.sln │ │ ├── SerialCommunication.vcxproj │ │ └── SerialCommunication.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── SerialCommunication.xcodeproj │ │ └── project.pbxproj │ │ └── SerialCommunication_Prefix.pch ├── StereoscopicRendering │ ├── assets │ │ ├── models │ │ │ ├── note.msh │ │ │ └── trombone.msh │ │ └── shaders │ │ │ ├── anaglyph.frag │ │ │ ├── anaglyph.vert │ │ │ ├── instanced_phong.vert │ │ │ ├── interlaced.frag │ │ │ ├── interlaced.vert │ │ │ ├── phong.frag │ │ │ └── phong.vert │ ├── include │ │ ├── Resources.h │ │ └── StereoAutoFocuser.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ ├── StereoAutoFocuser.cpp │ │ └── StereoscopicRenderingApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── StereoscopicRendering.sln │ │ ├── StereoscopicRendering.vcxproj │ │ └── StereoscopicRendering.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── StereoscopicRendering.xcodeproj │ │ └── project.pbxproj │ │ └── StereoscopicRendering_Prefix.pch ├── SurfaceBasic │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── SurfaceBasicApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── SurfaceBasic.sln │ │ ├── SurfaceBasic.vcxproj │ │ └── SurfaceBasic.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── SurfaceBasic.xcodeproj │ │ └── project.pbxproj │ │ └── SurfaceBasic_Prefix.pch ├── TextBox │ ├── androidstudio │ │ └── TextBox │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── samples │ │ │ │ │ └── textbox │ │ │ │ │ └── TextBoxActivity.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ └── settings.gradle │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ └── Icon.png │ ├── src │ │ └── TextBoxApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── TextBox.sln │ │ ├── TextBox.vcxproj │ │ └── TextBox.vcxproj.filters │ ├── xcode │ │ ├── Info.plist │ │ ├── TextBox.xcodeproj │ │ │ └── project.pbxproj │ │ └── TextBox_Prefix.pch │ └── xcode_iOS │ │ ├── TextBox_iOS-Info.plist │ │ ├── TextBox_iOS.xcodeproj │ │ └── project.pbxproj │ │ └── TextBox_iOS_Prefix.pch ├── TextTest │ ├── androidstudio │ │ └── TextTest │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── samples │ │ │ │ │ └── texttest │ │ │ │ │ └── TextTestActivity.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ └── settings.gradle │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── FontReadMe.txt │ │ ├── Icon.png │ │ └── Saint-Andrews Queen.ttf │ ├── src │ │ └── TextTestApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── TextTest.sln │ │ ├── TextTest.vcxproj │ │ └── TextTest.vcxproj.filters │ ├── xcode │ │ ├── Info.plist │ │ ├── TextTest.xcodeproj │ │ │ └── project.pbxproj │ │ └── TextTest_Prefix.pch │ └── xcode_iOS │ │ ├── TextTest_iOS-Info.plist │ │ ├── TextTest_iOS.xcodeproj │ │ └── project.pbxproj │ │ └── TextTest_iOS_Prefix.pch ├── TextureFont │ ├── androidstudio │ │ └── TextureFont │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── samples │ │ │ │ │ └── texturefont │ │ │ │ │ └── TextureFontActivity.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ └── settings.gradle │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ └── Icon.png │ ├── src │ │ └── TextureFontApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── TextureFont.sln │ │ ├── TextureFont.vcxproj │ │ └── TextureFont.vcxproj.filters │ ├── xcode │ │ ├── Info.plist │ │ ├── TextureFont.xcodeproj │ │ │ └── project.pbxproj │ │ └── TextureFont_Prefix.pch │ └── xcode_iOS │ │ ├── TextureFont-Info.plist │ │ ├── TextureFont.xcodeproj │ │ └── project.pbxproj │ │ └── TextureFont_Prefix.pch ├── Triangulation │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── TriangulationApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── Triangulation.sln │ │ ├── Triangulation.vcxproj │ │ └── Triangulation.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── Triangulation.xcodeproj │ │ └── project.pbxproj │ │ └── Triangulation_Prefix.pch ├── Tubular │ ├── include │ │ ├── Resources.h │ │ └── Tube.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ ├── Tube.cpp │ │ └── TubularApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── Tubular.sln │ │ ├── Tubular.vcxproj │ │ └── Tubular.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── Tubular.xcodeproj │ │ └── project.pbxproj │ │ └── Tubular_Prefix.pch ├── VoronoiGpu │ ├── include │ │ └── VoronoiGpu.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ ├── VoronoiGpu.cpp │ │ └── VoronoiGpuApp.cpp │ ├── vc2022 │ │ ├── VoronoiGpu.sln │ │ ├── VoronoiGpu.vcxproj │ │ └── VoronoiGpu.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── VoronoiGpu.xcodeproj │ │ └── project.pbxproj │ │ └── VoronoiGpu_Prefix.pch ├── Wisteria │ ├── include │ │ ├── Branch.h │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ ├── Branch.cpp │ │ └── WisteriaApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── Wisteria.sln │ │ ├── Wisteria.vcxproj │ │ └── Wisteria.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── Wisteria.xcodeproj │ │ └── project.pbxproj │ │ └── Wisteria_Prefix.pch ├── _AllSamples │ ├── vc2022 │ │ └── AllSamples.sln │ ├── xcode │ │ └── _AllSamples.xcodeproj │ │ │ └── project.pbxproj │ └── xcode_ios │ │ └── _AllSamples_ios.xcodeproj │ │ └── project.pbxproj ├── _audio │ ├── BufferPlayer │ │ ├── androidstudio │ │ │ └── BufferPlayer │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── sample │ │ │ │ │ │ └── bufferplayer │ │ │ │ │ │ └── BufferPlayerActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── BufferPlayerApp.cpp │ │ ├── vc2022 │ │ │ ├── BufferPlayer.sln │ │ │ ├── BufferPlayer.vcxproj │ │ │ ├── BufferPlayer.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── BufferPlayer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── BufferPlayer.xcscheme │ │ │ ├── Info.plist │ │ │ └── Prefix.pch │ │ └── xcode_ios │ │ │ ├── BufferPlayer.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ └── Prefix.pch │ ├── DelayFeedback │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ ├── smoothCircle.frag │ │ │ └── smoothCircle.vert │ │ ├── src │ │ │ └── DelayFeedbackApp.cpp │ │ ├── vc2022 │ │ │ ├── DelayFeedback.sln │ │ │ ├── DelayFeedback.vcxproj │ │ │ ├── DelayFeedback.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── DelayFeedback.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── DelayFeedback.xcscheme │ │ │ ├── Info.plist │ │ │ └── Prefix.pch │ ├── InputAnalyzer │ │ ├── androidstudio │ │ │ └── InputAnalyzer │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── sample │ │ │ │ │ │ └── inputanalyzer │ │ │ │ │ │ └── InputAnalyzerActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── InputAnalyzerApp.cpp │ │ ├── vc2022 │ │ │ ├── InputAnalyzer.sln │ │ │ ├── InputAnalyzer.vcxproj │ │ │ ├── InputAnalyzer.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── InputAnalyzer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── InputAnalyzer.xcscheme │ │ │ └── Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── InputAnalyzer.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── Prefix.pch │ ├── MultichannelOutput │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── MultichannelOutputApp.cpp │ │ ├── vc2022 │ │ │ ├── MultichannelOutput.sln │ │ │ ├── MultichannelOutput.vcxproj │ │ │ ├── MultichannelOutput.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── MultichannelOutput.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── MultiChannelOutput.xcscheme │ │ │ └── Prefix.pch │ ├── NodeAdvanced │ │ ├── androidstudio │ │ │ └── NodeAdvanced │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── sample │ │ │ │ │ │ └── nodeadvanced │ │ │ │ │ │ └── NodeAdvancedActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── NodeAdvancedApp.cpp │ │ ├── vc2022 │ │ │ ├── NodeAdvanced.sln │ │ │ ├── NodeAdvanced.vcxproj │ │ │ ├── NodeAdvanced.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── NodeAdvanced.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── NodeAdvanced.xcscheme │ │ │ └── Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── NodeAdvanced.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── NodeAdvanced_Prefix.pch │ ├── NodeBasic │ │ ├── androidstudio │ │ │ └── NodeBasic │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── sample │ │ │ │ │ │ └── nodebasic │ │ │ │ │ │ └── NodeBasicActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── NodeBasicApp.cpp │ │ ├── vc2022 │ │ │ ├── NodeBasic.sln │ │ │ ├── NodeBasic.vcxproj │ │ │ ├── NodeBasic.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── NodeBasic.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── NodeBasic.xcscheme │ │ │ └── Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── NodeBasic.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── Prefix.pch │ ├── NodeSubclassing │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ ├── CustomTremoloNode.cpp │ │ │ ├── CustomTremoloNode.h │ │ │ └── NodeSubclassingApp.cpp │ │ ├── vc2022 │ │ │ ├── NodeSubclassing.sln │ │ │ ├── NodeSubclassing.vcxproj │ │ │ ├── NodeSubclassing.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── NodeSubclassing.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── NodeSubclassing_Prefix.pch │ ├── VoiceBasic │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── VoiceBasicApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── VoiceBasic.sln │ │ │ ├── VoiceBasic.vcxproj │ │ │ └── VoiceBasic.vcxproj.filters │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── VoiceBasic.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── VoiceBasic.xcscheme │ │ │ └── VoiceBasic_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── VoiceBasic.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── VoiceBasic-ios.xcscheme │ │ │ └── VoiceBasic_Prefix.pch │ ├── VoiceBasicProcessing │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── VoiceBasicProcessingApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── VoiceBasicProcessing.sln │ │ │ ├── VoiceBasicProcessing.vcxproj │ │ │ └── VoiceBasicProcessing.vcxproj.filters │ │ └── xcode │ │ │ ├── Info.plist │ │ │ └── VoiceBasicProcessing.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── VoiceBasicProcessing.xcscheme │ └── common │ │ ├── AudioDrawUtils.cpp │ │ └── AudioDrawUtils.h ├── _opengl │ ├── ClothSimulation │ │ ├── assets │ │ │ ├── render.frag │ │ │ ├── render.vert │ │ │ └── update.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── ClothSimulationApp.cpp │ │ ├── vc2022 │ │ │ ├── ClothSimulation.sln │ │ │ ├── ClothSimulation.vcxproj │ │ │ ├── ClothSimulation.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── ClothSimulation.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── ClothSimulation_Prefix.pch │ │ │ └── Info.plist │ ├── Cube │ │ ├── androidstudio │ │ │ └── Cube │ │ │ │ ├── Cube.iml │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── sample │ │ │ │ │ │ └── cube │ │ │ │ │ │ └── CubeActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── shader.frag │ │ │ ├── shader.vert │ │ │ ├── shader_es2.frag │ │ │ ├── shader_es2.vert │ │ │ └── texture.jpg │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── CubeApp.cpp │ │ ├── vc2022 │ │ │ ├── Cube.sln │ │ │ ├── Cube.vcxproj │ │ │ ├── Cube.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Cube.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── Cube_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── Cube.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── Cube_Prefix.pch │ │ │ ├── Default-568h@2x.png │ │ │ └── Info.plist │ ├── CubeMapping │ │ ├── CinderCubeMapOrientation.jpg │ │ ├── androidstudio │ │ │ └── CubeMapping │ │ │ │ ├── CubeMapping.iml │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── sample │ │ │ │ │ │ └── cubemapping │ │ │ │ │ │ └── CubeMappingActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── env_map.frag │ │ │ ├── env_map.jpg │ │ │ ├── env_map.vert │ │ │ ├── env_map_es2.frag │ │ │ ├── env_map_es2.vert │ │ │ ├── sky_box.frag │ │ │ ├── sky_box.vert │ │ │ ├── sky_box_es2.frag │ │ │ └── sky_box_es2.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── CubeMappingApp.cpp │ │ ├── vc2022 │ │ │ ├── CubeMapping.sln │ │ │ ├── CubeMapping.vcxproj │ │ │ ├── CubeMapping.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── CubeMapping.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── CubeMapping_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── CubeMapping copy-Info.plist │ │ │ ├── CubeMapping.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── CubeMapping_Prefix.pch │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ └── LaunchScreen.xib │ ├── DeferredShading │ │ ├── androidstudio │ │ │ └── DeferredShading │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── deferredshading │ │ │ │ │ │ └── DeferredShadingActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── debug.frag │ │ │ ├── fxaa.frag │ │ │ ├── gbuffer.frag │ │ │ ├── gbuffer.vert │ │ │ ├── lbuffer.frag │ │ │ ├── pass_through.vert │ │ │ ├── precision.glsl │ │ │ ├── shadow_map.frag │ │ │ └── shadow_map.vert │ │ ├── include │ │ │ └── Light.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ ├── DeferredShadingApp.cpp │ │ │ └── Light.cpp │ │ ├── vc2022 │ │ │ ├── DeferredShading.sln │ │ │ ├── DeferredShading.vcxproj │ │ │ ├── DeferredShading.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── DeferredShading.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── DeferredShading_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── DeferredShading.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── DeferredShading_Prefix.pch │ │ │ ├── Images.xcassets │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667@2x.png │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ └── Info.plist │ ├── DeferredShadingAdvanced │ │ ├── assets │ │ │ ├── ao │ │ │ │ ├── composite.frag │ │ │ │ ├── hbao │ │ │ │ │ ├── ao.frag │ │ │ │ │ └── blur.frag │ │ │ │ └── sao │ │ │ │ │ ├── ao.frag │ │ │ │ │ ├── blur.frag │ │ │ │ │ └── csz.frag │ │ │ ├── bloom │ │ │ │ ├── blur.frag │ │ │ │ ├── composite.frag │ │ │ │ └── highpass.frag │ │ │ ├── common │ │ │ │ ├── light.glsl │ │ │ │ ├── material.glsl │ │ │ │ ├── offset.glsl │ │ │ │ ├── pi.glsl │ │ │ │ ├── unpack.glsl │ │ │ │ ├── vertex_in.glsl │ │ │ │ └── vertex_out.glsl │ │ │ ├── deferred │ │ │ │ ├── debug.frag │ │ │ │ ├── emissive.frag │ │ │ │ ├── gbuffer.frag │ │ │ │ ├── gbuffer.vert │ │ │ │ ├── lbuffer_light.frag │ │ │ │ ├── lbuffer_light.vert │ │ │ │ ├── lbuffer_shadow.frag │ │ │ │ └── shadow_map.frag │ │ │ ├── pass_through.vert │ │ │ ├── post │ │ │ │ ├── color.frag │ │ │ │ ├── dof.frag │ │ │ │ ├── fog.frag │ │ │ │ └── fxaa.frag │ │ │ └── ray │ │ │ │ ├── composite.frag │ │ │ │ ├── occlude.frag │ │ │ │ └── scatter.frag │ │ ├── include │ │ │ ├── Light.h │ │ │ ├── Material.h │ │ │ └── Model.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ ├── DeferredShadingAdvancedApp.cpp │ │ │ ├── Light.cpp │ │ │ ├── Material.cpp │ │ │ └── Model.cpp │ │ ├── vc2022 │ │ │ ├── DeferredShadingAdvanced.sln │ │ │ ├── DeferredShadingAdvanced.vcxproj │ │ │ ├── DeferredShadingAdvanced.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── DeferredShadingAdvanced.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── DeferredShadingAdvanced_Prefix.pch │ │ │ └── Info.plist │ ├── DynamicCubeMapping │ │ ├── androidstudio │ │ │ └── DynamicCubeMapping │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── dynamiccubemapping │ │ │ │ │ │ └── DynamicCubeMappingActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── env_map.frag │ │ │ ├── env_map.jpg │ │ │ ├── env_map.vert │ │ │ ├── env_map_es2.frag │ │ │ ├── env_map_es2.vert │ │ │ ├── sky_box.frag │ │ │ ├── sky_box.vert │ │ │ ├── sky_box_es2.frag │ │ │ └── sky_box_es2.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── DynamicCubeMappingApp.cpp │ │ ├── vc2022 │ │ │ ├── DynamicCubeMapping.sln │ │ │ ├── DynamicCubeMapping.vcxproj │ │ │ ├── DynamicCubeMapping.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── DynamicCubeMapping.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── DynamicCubeMapping_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── DynamicCubeMapping.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── DynamicCubeMapping_Prefix.pch │ │ │ └── Info.plist │ ├── FboBasic │ │ ├── androidstudio │ │ │ └── FBOBasic │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── fbobasic │ │ │ │ │ │ └── FBOBasicActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── FboBasicApp.cpp │ │ ├── vc2022 │ │ │ ├── FboBasic.sln │ │ │ ├── FboBasic.vcxproj │ │ │ ├── FboBasic.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── FboBasic.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── FboBasic_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── FboBasic.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── Info.plist │ │ │ └── prefix.pch │ ├── FboMultipleRenderTargets │ │ ├── assets │ │ │ ├── multipleOut.frag │ │ │ ├── multipleOut.vert │ │ │ ├── multipleOut_es3.frag │ │ │ └── multipleOut_es3.vert │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── FboMultipleRenderTargetsApp.cpp │ │ ├── vc2022 │ │ │ ├── FboMultipleRenderTargets.sln │ │ │ ├── FboMultipleRenderTargets.vcxproj │ │ │ ├── FboMultipleRenderTargets.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── FboMultipleRenderTargets.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── FboMultipleRenderTargets_Prefix.pch │ │ │ └── Info.plist │ ├── GeometryShaderBasic │ │ ├── assets │ │ │ ├── basic.frag │ │ │ ├── basic.geom │ │ │ └── basic.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── GeometryShaderBasicApp.cpp │ │ ├── vc2022 │ │ │ ├── GeometryShaderBasic.sln │ │ │ ├── GeometryShaderBasic.vcxproj │ │ │ ├── GeometryShaderBasic.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── GeometryShaderBasic.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── GeometryShaderBasic_Prefix.pch │ │ │ └── Info.plist │ ├── HighDynamicRange │ │ ├── androidstudio │ │ │ └── HighDynamicRange │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── highdynamicrange │ │ │ │ │ │ └── HighDynamicRangeActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── Desk_oBA2_scaled.hdr │ │ │ ├── shader.frag │ │ │ ├── shader.vert │ │ │ ├── shader_es2.frag │ │ │ └── shader_es2.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── HighDynamicRangeApp.cpp │ │ ├── vc2022 │ │ │ ├── HighDynamicRange.sln │ │ │ ├── HighDynamicRange.vcxproj │ │ │ ├── HighDynamicRange.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── HighDynamicRange.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── HighDynamicRange_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── HighDynamicRange.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── HighDynamicRange_Prefix.pch │ │ │ └── Info.plist │ ├── ImmediateMode │ │ ├── androidstudio │ │ │ └── ImmediateMode │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── immediatemode │ │ │ │ │ │ └── ImmediateModeActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── ImmediateModeApp.cpp │ │ ├── vc2022 │ │ │ ├── ImmediateMode.sln │ │ │ ├── ImmediateMode.vcxproj │ │ │ ├── ImmediateMode.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── ImmediateMode.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── ImmediateMode_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── ImmediateMode.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── ImmediateMode_Prefix.pch │ │ │ └── Info.plist │ ├── InstancedTeapots │ │ ├── androidstudio │ │ │ └── InstancedTeapots │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── instancedteapots │ │ │ │ │ │ └── InstancedTeapotsActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── shader.frag │ │ │ ├── shader.vert │ │ │ ├── shader_es2.frag │ │ │ ├── shader_es2.vert │ │ │ ├── shader_es3.frag │ │ │ ├── shader_es3.vert │ │ │ └── texture.jpg │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── InstancedTeapotsApp.cpp │ │ ├── vc2022 │ │ │ ├── InstancedTeapots.sln │ │ │ ├── InstancedTeapots.vcxproj │ │ │ ├── InstancedTeapots.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── InstancedTeapots.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── InstancedTeapots_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── InstancedTeapots copy-Info.plist │ │ │ ├── InstancedTeapots.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── InstancedTeapots_Prefix.pch │ ├── LevelOfDetailBasic │ │ ├── assets │ │ │ ├── render.frag │ │ │ ├── render.vert │ │ │ ├── update.geom │ │ │ └── update.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── resources │ │ │ └── cinder_app_icon.ico │ │ ├── src │ │ │ └── LevelOfDetailBasicApp.cpp │ │ ├── vc2022 │ │ │ ├── LevelOfDetailBasic.sln │ │ │ ├── LevelOfDetailBasic.vcxproj │ │ │ ├── LevelOfDetailBasic.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── LevelOfDetailBasic.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── LevelOfDetailBasic_Prefix.pch │ ├── LevelOfDetailIndirect │ │ ├── assets │ │ │ ├── render.frag │ │ │ ├── render.vert │ │ │ ├── update.geom │ │ │ └── update.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ ├── CinderApp.icns │ │ │ └── cinder_app_icon.ico │ │ ├── src │ │ │ └── LevelOfDetailIndirectApp.cpp │ │ └── vc2022 │ │ │ ├── LevelOfDetailIndirect.sln │ │ │ ├── LevelOfDetailIndirect.vcxproj │ │ │ ├── LevelOfDetailIndirect.vcxproj.filters │ │ │ └── Resources.rc │ ├── MipMap │ │ ├── androidstudio │ │ │ └── MipMap │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── mipmap │ │ │ │ │ │ └── MipMapActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ ├── CinderApp_ios.png │ │ │ ├── GL_LIN_MIP_LIN.png │ │ │ ├── GL_LIN_MIP_NEA.png │ │ │ ├── GL_NEA_MIP_LIN.png │ │ │ ├── GL_NEA_MIP_NEA.png │ │ │ ├── anisotropicbutton.png │ │ │ ├── checkerboard.png │ │ │ ├── glgenmipmap.png │ │ │ ├── non_pot_checkerboard.png │ │ │ ├── usergenmipmap.png │ │ │ └── userresizedmipmap.png │ │ ├── src │ │ │ └── MipMapApp.cpp │ │ ├── vc2022 │ │ │ ├── MipMap.sln │ │ │ ├── MipMap.vcxproj │ │ │ ├── MipMap.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── MipMap.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── MipMap_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── MipMap.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── MipMap_Prefix.pch │ ├── MotionBlurFbo │ │ ├── androidstudio │ │ │ └── MotionBlurFbo │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── motionblurfbo │ │ │ │ │ │ └── MotionBlurFboActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── MotionBlurFboApp.cpp │ │ ├── vc2022 │ │ │ ├── MotionBlurFbo.sln │ │ │ ├── MotionBlurFbo.vcxproj │ │ │ ├── MotionBlurFbo.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── MotionBlurFbo.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── MotionBlurFbo_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── MotionBlurFbo.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── MotionBlurFbo_Prefix.pch │ ├── MotionBlurVelocityBuffer │ │ ├── androidstudio │ │ │ └── MotionBlurVelocityBuffer │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── motionblurvelocitybuffer │ │ │ │ │ │ └── MotionBlurVelocityBufferActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── background.jpg │ │ │ ├── motion-blur.fs │ │ │ ├── neighbormax.fs │ │ │ ├── passthrough.vs │ │ │ ├── tilemax.fs │ │ │ ├── velocity-render.fs │ │ │ ├── velocity.fs │ │ │ └── velocity.vs │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ ├── BlurrableThings.cpp │ │ │ ├── BlurrableThings.h │ │ │ └── MotionBlurVelocityBufferApp.cpp │ │ ├── vc2022 │ │ │ ├── MotionBlurVelocityBuffer.sln │ │ │ ├── MotionBlurVelocityBuffer.vcxproj │ │ │ ├── MotionBlurVelocityBuffer.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── MotionBlurVelocityBuffer.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── MotionBlurVelocityBuffer_Prefix.pch │ ├── NVidiaComputeParticles │ │ ├── README.md │ │ ├── assets │ │ │ ├── particles.comp │ │ │ ├── render.frag │ │ │ └── render.vert │ │ ├── include │ │ │ ├── Resources.h │ │ │ ├── ScopedBufferBase.h │ │ │ └── Ssbo.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ ├── CinderApp_ios.png │ │ │ └── cinder_app_icon.ico │ │ ├── src │ │ │ └── NVidiaComputeParticlesApp.cpp │ │ └── vc2022 │ │ │ ├── NVidiaComputeParticles.sln │ │ │ ├── NVidiaComputeParticles.vcxproj │ │ │ ├── NVidiaComputeParticles.vcxproj.filters │ │ │ └── Resources.rc │ ├── NormalMapping │ │ ├── androidstudio │ │ │ └── NormalMapping │ │ │ │ ├── NormalMapping.iml │ │ │ │ ├── app │ │ │ │ ├── app.iml │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── sample │ │ │ │ │ │ └── normalmapping │ │ │ │ │ │ └── NormalMappingActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── copyright.png │ │ │ ├── leprechaun.msh │ │ │ ├── leprechaun_diffuse.jpg │ │ │ ├── leprechaun_emmisive.png │ │ │ ├── leprechaun_normal.jpg │ │ │ ├── leprechaun_specular.jpg │ │ │ ├── normal_mapping_frag.glsl │ │ │ ├── normal_mapping_frag_es2.glsl │ │ │ ├── normal_mapping_vert.glsl │ │ │ ├── normal_mapping_vert_es2.glsl │ │ │ ├── wireframe_frag.glsl │ │ │ ├── wireframe_geom.glsl │ │ │ └── wireframe_vert.glsl │ │ ├── include │ │ │ ├── DebugMesh.h │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ ├── DebugMesh.cpp │ │ │ └── NormalMappingApp.cpp │ │ ├── vc2022 │ │ │ ├── NormalMapping.sln │ │ │ ├── NormalMapping.vcxproj │ │ │ ├── NormalMapping.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── NormalMapping.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── NormalMapping_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── NormalMapping.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── NormalMapping_Prefix.pch │ ├── NormalMappingBasic │ │ ├── androidstudio │ │ │ └── NormalMappingBasic │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── sample │ │ │ │ │ │ └── normalmappingbasic │ │ │ │ │ │ └── NormalMappingBasicActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── diffuseMap.jpg │ │ │ ├── normalMap.png │ │ │ ├── shader.frag │ │ │ ├── shader.vert │ │ │ ├── shader_es2.frag │ │ │ └── shader_es2.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── NormalMappingBasicApp.cpp │ │ ├── vc2022 │ │ │ ├── NormalMappingBasic.sln │ │ │ ├── NormalMappingBasic.vcxproj │ │ │ ├── NormalMappingBasic.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── NormalMappingBasic.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── NormalMappingBasic_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── NormalMappingBasic.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── NormalMappingBasic_Prefix.pch │ ├── NvidiaMulticast │ │ ├── assets │ │ │ ├── settings.json │ │ │ ├── shader.frag │ │ │ ├── shader.vert │ │ │ ├── texture.png │ │ │ └── tiles.png │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── NvidiaMulticastApp.cpp │ │ └── vc2022 │ │ │ ├── NvidiaMulticast.sln │ │ │ ├── NvidiaMulticast.vcxproj │ │ │ ├── NvidiaMulticast.vcxproj.filters │ │ │ └── Resources.rc │ ├── ObjLoader │ │ ├── androidstudio │ │ │ └── ObjLoader │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── objloader │ │ │ │ │ │ └── ObjLoaderActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── shader.frag │ │ │ ├── shader.vert │ │ │ ├── shader_es2.frag │ │ │ └── shader_es2.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── ObjLoaderApp.cpp │ │ ├── vc2022 │ │ │ ├── ObjLoader.sln │ │ │ ├── ObjLoader.vcxproj │ │ │ ├── ObjLoader.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── ObjLoader.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── ObjLoader_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── ObjLoader.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── ObjLoader_Prefix.pch │ ├── PBOReadBack │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── PBOReadBackApp.cpp │ │ ├── vc2022 │ │ │ ├── PBOReadBack.sln │ │ │ ├── PBOReadBack.vcxproj │ │ │ ├── PBOReadBack.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── PBOReadBack.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── PBOReadBack_Prefix.pch │ ├── ParticleSphereCPU │ │ ├── androidstudio │ │ │ └── ParticleSphereCPU │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── particlespherecpu │ │ │ │ │ │ └── ParticleSphereCPUActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── draw_es3.frag │ │ │ └── draw_es3.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── ParticleSphereCPUApp.cpp │ │ ├── vc2022 │ │ │ ├── ParticleSphereCPU.sln │ │ │ ├── ParticleSphereCPU.vcxproj │ │ │ ├── ParticleSphereCPU.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── ParticleSphereCPU.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── ParticleSphereCPU_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── ParticleSphereCPU.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── ParticleSphereCPU_Prefix.pch │ ├── ParticleSphereCS │ │ ├── assets │ │ │ ├── particleRender.frag │ │ │ ├── particleRender.vert │ │ │ ├── particleRender_es31.frag │ │ │ ├── particleRender_es31.vert │ │ │ ├── particleUpdate.comp │ │ │ └── particleUpdate_es31.comp │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── cinder_app_icon.ico │ │ ├── src │ │ │ └── ParticleSphereCSApp.cpp │ │ └── vc2022 │ │ │ ├── ParticleSphereCS.sln │ │ │ ├── ParticleSphereCS.vcxproj │ │ │ ├── ParticleSphereCS.vcxproj.filters │ │ │ └── Resources.rc │ ├── ParticleSphereGPU │ │ ├── androidstudio │ │ │ └── ParticleSphereGPU │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── particlespheregpu │ │ │ │ │ │ └── ParticleSphereGPUActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── draw_es3.frag │ │ │ ├── draw_es3.vert │ │ │ ├── no_op_es3.fs │ │ │ ├── particleUpdate.vs │ │ │ └── particleUpdate_es3.vs │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── ParticleSphereGPUApp.cpp │ │ ├── vc2022 │ │ │ ├── ParticleSphereGPU.sln │ │ │ ├── ParticleSphereGPU.vcxproj │ │ │ ├── ParticleSphereGPU.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── ParticleSphereGPU.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── ParticleSphereGPU_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── ParticleSphereGPU.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── ParticleSphereGPU_Prefix.pch │ ├── ParticlesBasic │ │ ├── androidstudio │ │ │ └── ParticlesBasic │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── particlesbasic │ │ │ │ │ │ └── ParticlesBasicActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── ParticlesBasicApp.cpp │ │ ├── vc2022 │ │ │ ├── ParticlesBasic.sln │ │ │ ├── ParticlesBasic.vcxproj │ │ │ └── ParticlesBasic.vcxproj.filters │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── ParticlesBasic.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── ParticlesBasic_Prefix.pch │ ├── PickingFBO │ │ ├── assets │ │ │ ├── not_pickable.vs.glsl │ │ │ ├── not_pickable_es3.vs.glsl │ │ │ ├── pickable.fs.glsl │ │ │ ├── pickable.vs.glsl │ │ │ ├── pickable_es3.fs.glsl │ │ │ └── pickable_es3.vs.glsl │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── PickingFBOApp.cpp │ │ ├── vc2022 │ │ │ ├── PickingFBO.sln │ │ │ ├── PickingFBO.vcxproj │ │ │ ├── PickingFBO.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── PickingFBO.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── PickingFBO_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── PickingFBO.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── PickingFBO_Prefix.pch │ ├── PostProcessingAA │ │ ├── assets │ │ │ ├── FXAA3_11.h │ │ │ ├── SMAA.h │ │ │ ├── fxaa.frag │ │ │ ├── fxaa.png │ │ │ ├── fxaa.vert │ │ │ ├── original.png │ │ │ ├── smaa.frag │ │ │ ├── smaa.png │ │ │ └── smaa.vert │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ ├── Pistons.cpp │ │ │ ├── Pistons.h │ │ │ ├── PostProcessingAAApp.cpp │ │ │ ├── fxaa │ │ │ │ ├── FXAA.cpp │ │ │ │ └── FXAA.h │ │ │ └── smaa │ │ │ │ ├── AreaTex.h │ │ │ │ ├── SMAA.cpp │ │ │ │ ├── SMAA.h │ │ │ │ └── SearchTex.h │ │ ├── vc2022 │ │ │ ├── PostProcessingAA.sln │ │ │ ├── PostProcessingAA.vcxproj │ │ │ ├── PostProcessingAA.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── PostProcessingAA.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── PostProcessingAA_Prefix.pch │ ├── ShadowMapping │ │ ├── androidstudio │ │ │ └── ShadowMapping │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── shadowmapping │ │ │ │ │ │ └── ShadowMappingActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── shadow_mapping.frag │ │ │ ├── shadow_mapping.vert │ │ │ ├── shadow_mapping_es3.frag │ │ │ └── shadow_mapping_es3.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── ShadowMappingApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── ShadowMapping.sln │ │ │ ├── ShadowMapping.vcxproj │ │ │ └── ShadowMapping.vcxproj.filters │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── ShadowMapping.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── ShadowMapping_Prefix.pch │ ├── ShadowMappingBasic │ │ ├── androidstudio │ │ │ └── ShadowMappingBasic │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── shadowmappingbasic │ │ │ │ │ │ └── ShadowMappingBasicActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── shadow_shader.frag │ │ │ ├── shadow_shader.vert │ │ │ ├── shadow_shader_es2.frag │ │ │ └── shadow_shader_es2.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── ShadowMappingBasicApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── ShadowMappingBasic.sln │ │ │ ├── ShadowMappingBasic.vcxproj │ │ │ └── ShadowMappingBasic.vcxproj.filters │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── ShadowMappingBasic.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── ShadowMappingBasic_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── ShadowMappingBasic.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── ShadowMappingBasic_Prefix.pch │ ├── StencilReflection │ │ ├── assets │ │ │ ├── shader.frag │ │ │ ├── shader.vert │ │ │ ├── shader_es2.frag │ │ │ └── shader_es2.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── StencilReflectionApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── StencilReflection.sln │ │ │ ├── StencilReflection.vcxproj │ │ │ └── StencilReflection.vcxproj.filters │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── StencilReflection.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── StencilReflection_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── StencilReflection.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── StencilReflection_Prefix.pch │ ├── SuperformulaGPU │ │ ├── assets │ │ │ ├── normals_shader.frag │ │ │ ├── normals_shader.vert │ │ │ ├── normals_shader_es3.frag │ │ │ ├── normals_shader_es3.vert │ │ │ ├── shader.frag │ │ │ ├── shader.vert │ │ │ ├── shader_es3.frag │ │ │ └── shader_es3.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── SuperformulaGPUApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── SuperformulaGPU.sln │ │ │ ├── SuperformulaGPU.vcxproj │ │ │ └── SuperformulaGPU.vcxproj.filters │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── SuperformulaGPU.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── SuperformulaGPU_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── SuperformulaGPU.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── SuperformulaGPU_Prefix.pch │ ├── TessellationBasic │ │ ├── androidstudio │ │ │ └── TessellationBasic │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── tessellationbasic │ │ │ │ │ │ └── TessellationBasicActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── es31a │ │ │ │ ├── 0_vert.glsl │ │ │ │ ├── 1_tess_ctrl.glsl │ │ │ │ ├── 2_tess_eval.glsl │ │ │ │ ├── 3_frag.glsl │ │ │ │ └── x_geom.glsl │ │ │ └── ogl │ │ │ │ ├── 0_vert.glsl │ │ │ │ ├── 1_tess_ctrl.glsl │ │ │ │ ├── 2_tess_eval.glsl │ │ │ │ └── 3_frag.glsl │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── TessellationBasicApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── TessellationBasic.sln │ │ │ ├── TessellationBasic.vcxproj │ │ │ └── TessellationBasic.vcxproj.filters │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── TessellationBasic.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── TessellationBasic_Prefix.pch │ ├── TessellationBezier │ │ ├── androidstudio │ │ │ └── TessellationBezier │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── tessellationbezier │ │ │ │ │ │ └── TessellationBezierActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ └── ogl │ │ │ │ ├── bezier.frag │ │ │ │ ├── bezier.tesc │ │ │ │ ├── bezier.tese │ │ │ │ └── bezier.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── TessellationBezierApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── TessellationBezier.sln │ │ │ ├── TessellationBezier.vcxproj │ │ │ └── TessellationBezier.vcxproj.filters │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── TessellationBezier.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── TessellationBezier_Prefix.pch │ ├── TransformFeedbackSmokeParticles │ │ ├── assets │ │ │ ├── renderSmoke.frag │ │ │ ├── renderSmoke.vert │ │ │ ├── smoke_blur.png │ │ │ └── updateSmoke.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── TransformFeedbackSmokeParticlesApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── TransformFeedbackSmokeParticles.sln │ │ │ ├── TransformFeedbackSmokeParticles.vcxproj │ │ │ └── TransformFeedbackSmokeParticles.vcxproj.filters │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── TransformFeedbackSmokeParticles.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── TransformFeedbackSmokeParticles_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Images.xcassets │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667@2x.png │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ ├── Info.plist │ │ │ ├── TransformFeedbackSmokeParticles.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── TransformFeedbackSmokeParticles_Prefix.pch │ └── VboMesh │ │ ├── include │ │ └── Resources.h │ │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ │ ├── src │ │ └── VboMeshApp.cpp │ │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── VboMesh.sln │ │ ├── VboMesh.vcxproj │ │ └── VboMesh.vcxproj.filters │ │ └── xcode │ │ ├── Info.plist │ │ ├── VboMesh.xcodeproj │ │ └── project.pbxproj │ │ └── prefix.pch ├── _svg │ ├── AnimatedReveal │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── AnimatedRevealApp.cpp │ │ ├── vc2022 │ │ │ ├── AnimatedReveal.sln │ │ │ ├── AnimatedReveal.vcxproj │ │ │ ├── AnimatedReveal.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── AnimatedReveal.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── AnimatedReveal_Prefix.pch │ │ │ └── Info.plist │ ├── EuroMap │ │ ├── assets │ │ │ ├── Dosis-Medium.ttf │ │ │ └── Europe.svg │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── EuroMapApp.cpp │ │ ├── vc2022 │ │ │ ├── EuroMap.sln │ │ │ ├── EuroMap.vcxproj │ │ │ ├── EuroMap.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── EuroMap.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── EuroMap_Prefix.pch │ │ │ └── Info.plist │ ├── GoodNightMorning │ │ ├── assets │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Light.ttf │ │ │ └── cityscape.svg │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ ├── GoodNightMorningApp.cpp │ │ │ ├── MastadonHashtagStream.cpp │ │ │ └── MastadonHashtagStream.h │ │ ├── vc2022 │ │ │ ├── GoodNightMorning.sln │ │ │ ├── GoodNightMorning.vcxproj │ │ │ ├── GoodNightMorning.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── GoodNightMorning.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── GoodNightMorning_Prefix.pch │ │ │ └── Info.plist │ └── SimpleViewer │ │ ├── include │ │ └── Resources.h │ │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ │ ├── src │ │ └── SimpleViewerApp.cpp │ │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── SimpleViewer.sln │ │ ├── SimpleViewer.vcxproj │ │ └── SimpleViewer.vcxproj.filters │ │ └── xcode │ │ ├── Info.plist │ │ ├── SimpleViewer.xcodeproj │ │ └── project.pbxproj │ │ └── SimpleViewer_Prefix.pch ├── _timeline │ ├── BasicAppendTween │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── BasicAppendTweenApp.cpp │ │ ├── vc2022 │ │ │ ├── BasicAppendTween.sln │ │ │ ├── BasicAppendTween.vcxproj │ │ │ ├── BasicAppendTween.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── BasicAppendTween.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── BasicAppendTween_Prefix.pch │ │ │ └── Info.plist │ ├── BasicTween │ │ ├── include │ │ │ └── .gitignore │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── BasicTweenApp.cpp │ │ ├── vc2022 │ │ │ ├── BasicTween.sln │ │ │ ├── BasicTween.vcxproj │ │ │ ├── BasicTween.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── BasicTween.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── BasicTween_Prefix.pch │ │ │ └── Info.plist │ ├── CustomCallback │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── CustomCallbackApp.cpp │ │ ├── vc2022 │ │ │ ├── CustomCallback.sln │ │ │ ├── CustomCallback.vcxproj │ │ │ ├── CustomCallback.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── CustomCallback.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── CustomCallback_Prefix.pch │ │ │ └── Info.plist │ ├── CustomLerp │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── CustomLerpApp.cpp │ │ ├── vc2022 │ │ │ ├── CustomLerp.sln │ │ │ ├── CustomLerp.vcxproj │ │ │ ├── CustomLerp.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── CustomLerp.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── CustomLerp_Prefix.pch │ │ │ └── Info.plist │ ├── DragTween │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ └── Icon.png │ │ ├── src │ │ │ └── DragTweenApp.cpp │ │ ├── vc2022 │ │ │ ├── DragTween.sln │ │ │ ├── DragTween.vcxproj │ │ │ ├── DragTween.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── DragTween.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── DragTween_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_iOS │ │ │ ├── DragTween-Info.plist │ │ │ ├── DragTween.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── DragTween_Prefix.pch │ ├── ImageAccordion │ │ ├── include │ │ │ ├── AccordionItem.h │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ ├── AccordionItem.cpp │ │ │ └── ImageAccordionApp.cpp │ │ ├── vc2022 │ │ │ ├── ImageAccordion.sln │ │ │ ├── ImageAccordion.vcxproj │ │ │ ├── ImageAccordion.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── ImageAccordion.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── ImageAccordion_Prefix.pch │ │ │ └── Info.plist │ ├── PaletteBrowser │ │ ├── assets │ │ │ ├── Colors of Iceland.jpg │ │ │ ├── Signika-Regular.ttf │ │ │ ├── iceland.txt │ │ │ ├── images │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 13.jpg │ │ │ │ ├── 14.jpg │ │ │ │ ├── 15.jpg │ │ │ │ ├── 16.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ └── 9.jpg │ │ │ ├── palettes │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── swatchLarge.png │ │ │ └── swatchSmall.png │ │ ├── include │ │ │ ├── Item.h │ │ │ ├── Resources.h │ │ │ └── Swatch.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ ├── Item.cpp │ │ │ ├── PaletteBrowserApp.cpp │ │ │ └── Swatch.cpp │ │ ├── vc2022 │ │ │ ├── PaletteBrowser.sln │ │ │ ├── PaletteBrowser.vcxproj │ │ │ ├── PaletteBrowser.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── PaletteBrowser.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── PaletteBrowser_Prefix.pch │ ├── TextInputTween │ │ ├── include │ │ │ ├── Character.h │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ │ ├── Alfphabet-IV.ttf │ │ │ └── OFL-1.1.txt │ │ ├── src │ │ │ ├── Character.cpp │ │ │ └── TextInputTweenApp.cpp │ │ ├── vc2022 │ │ │ ├── Resources.rc │ │ │ ├── TextInputTween.sln │ │ │ ├── TextInputTween.vcxproj │ │ │ └── TextInputTween.vcxproj.filters │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── TextInputTween.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── TextInputTween_Prefix.pch │ └── VisualDictionary │ │ ├── include │ │ ├── CenterState.h │ │ ├── Dictionary.h │ │ ├── Resources.h │ │ └── WordNode.h │ │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ │ ├── resources │ │ ├── EnglishDictionary.gz │ │ ├── LICENCE.txt │ │ ├── YanoneKaffeesatz-Regular.ttf │ │ ├── background.png │ │ ├── circle.png │ │ └── smallCircle.png │ │ ├── src │ │ ├── CenterState.cpp │ │ ├── Dictionary.cpp │ │ ├── VisualDictionaryApp.cpp │ │ └── WordNode.cpp │ │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── VisualDictionary.sln │ │ ├── VisualDictionary.vcxproj │ │ └── VisualDictionary.vcxproj.filters │ │ └── xcode │ │ ├── Info.plist │ │ ├── VisualDictionary.xcodeproj │ │ └── project.pbxproj │ │ └── VisualDictionary_Prefix.pch ├── data │ ├── CinderApp.icns │ ├── CinderApp_ios.png │ ├── LICENSE │ ├── cinder_app_icon.ico │ ├── cinder_logo.png │ ├── cinder_logo_alpha.png │ ├── earth.jpg │ ├── environment_maps │ │ ├── humus_sf.jpg │ │ └── humus_sf_readme.txt │ ├── models │ │ └── 8lbs.obj │ ├── photo_1.jpg │ ├── photo_2.jpg │ ├── photo_3.jpg │ ├── photo_4.jpg │ ├── photo_5.jpg │ ├── photo_6.jpg │ ├── photo_7.jpg │ ├── photo_8.jpg │ ├── rg_grad.png │ └── sound │ │ └── DrainMagic.ogg ├── iosKeyboard │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ └── iosKeyboardApp.cpp │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── iosKeyboard.xcodeproj │ │ └── project.pbxproj │ │ └── iosKeyboard_Prefix.pch ├── iosNativeControls │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ ├── NativeControlsApp.mm │ │ ├── NativeViewController.h │ │ └── NativeViewController.mm │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── NativeControls.xcodeproj │ │ └── project.pbxproj │ │ └── NativeControls_Prefix.pch ├── perlinTest │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── perlinTestApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── perlinTest.sln │ │ ├── perlinTest.vcxproj │ │ └── perlinTest.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── perlinTest.xcodeproj │ │ └── project.pbxproj │ │ └── perlinTest_Prefix.pch └── slerpBasic │ ├── include │ └── Resources.h │ ├── proj │ └── cmake │ │ └── CMakeLists.txt │ ├── src │ └── slerpBasicApp.cpp │ ├── vc2022 │ ├── Resources.rc │ ├── slerpBasic.sln │ ├── slerpBasic.vcxproj │ └── slerpBasic.vcxproj.filters │ └── xcode │ ├── Info.plist │ ├── slerpBasic.xcodeproj │ └── project.pbxproj │ └── slerpBasic_Prefix.pch ├── src ├── cinder │ ├── Area.cpp │ ├── BSpline.cpp │ ├── BSplineFit.cpp │ ├── BandedMatrix.cpp │ ├── Base64.cpp │ ├── Buffer.cpp │ ├── Camera.cpp │ ├── CameraUi.cpp │ ├── CanvasUi.cpp │ ├── Capture.cpp │ ├── CaptureImplAvFoundation.mm │ ├── CaptureImplCocoaDummy.mm │ ├── CaptureImplDirectShow.cpp │ ├── CaptureImplGStreamer.cpp │ ├── CaptureImplJni.cpp │ ├── Channel.cpp │ ├── CinderAssert.cpp │ ├── CinderImGui.cpp │ ├── CinderMath.cpp │ ├── Clipboard.cpp │ ├── Color.cpp │ ├── DataSource.cpp │ ├── DataTarget.cpp │ ├── Display.cpp │ ├── Exception.cpp │ ├── FileWatcher.cpp │ ├── Filesystem.cpp │ ├── Font.cpp │ ├── Frustum.cpp │ ├── GeomIo.cpp │ ├── ImageFileTinyExr.cpp │ ├── ImageIo.cpp │ ├── ImageSourceFileQoi.cpp │ ├── ImageSourceFileQuartz.cpp │ ├── ImageSourceFileRadiance.cpp │ ├── ImageSourceFileStbImage.cpp │ ├── ImageSourceFileWic.cpp │ ├── ImageSourcePng.cpp │ ├── ImageTargetFileQoi.cpp │ ├── ImageTargetFileQuartz.cpp │ ├── ImageTargetFileStbImage.cpp │ ├── ImageTargetFileWic.cpp │ ├── Json.cpp │ ├── JsonTree.cpp │ ├── Log.cpp │ ├── Matrix.cpp │ ├── MediaTime.cpp │ ├── ObjLoader.cpp │ ├── Path2d.cpp │ ├── Perlin.cpp │ ├── Plane.cpp │ ├── PolyLine.cpp │ ├── Rand.cpp │ ├── Ray.cpp │ ├── Rect.cpp │ ├── Serial.cpp │ ├── Shape2d.cpp │ ├── Signals.cpp │ ├── Sphere.cpp │ ├── Stream.cpp │ ├── Surface.cpp │ ├── System.cpp │ ├── Text.cpp │ ├── Timeline.cpp │ ├── TimelineItem.cpp │ ├── Timer.cpp │ ├── TriMesh.cpp │ ├── Triangulate.cpp │ ├── Tween.cpp │ ├── Unicode.cpp │ ├── Url.cpp │ ├── UrlImplCocoa.mm │ ├── UrlImplCurl.cpp │ ├── UrlImplJni.cpp │ ├── UrlImplWinInet.cpp │ ├── Utilities.cpp │ ├── Xml.cpp │ ├── android │ │ ├── AndroidDevLog.cpp │ │ ├── CinderAndroid.cpp │ │ ├── JniHelper.cpp │ │ ├── LogCatStream.cpp │ │ ├── app │ │ │ ├── CinderNativeActivity.cpp │ │ │ ├── ComponentManager.cpp │ │ │ └── Permissions.cpp │ │ ├── hardware │ │ │ └── Camera.cpp │ │ ├── libc_helper.cpp │ │ ├── net │ │ │ └── UrlLoader.cpp │ │ └── video │ │ │ ├── MovieGl.cpp │ │ │ └── VideoPlayer.cpp │ ├── app │ │ ├── AppBase.cpp │ │ ├── AppScreenSaver.cpp │ │ ├── KeyEvent.cpp │ │ ├── Platform.cpp │ │ ├── Renderer.cpp │ │ ├── RendererD3d11.cpp │ │ ├── RendererDx.cpp │ │ ├── RendererGl.cpp │ │ ├── RendererMetal.mm │ │ ├── Window.cpp │ │ ├── android │ │ │ ├── AppAndroid.cpp │ │ │ ├── AppImplAndroid.cpp │ │ │ ├── AssetFileSystem.cpp │ │ │ ├── EventManagerAndroid.cpp │ │ │ ├── PlatformAndroid.cpp │ │ │ ├── Renderer2dAndroid.cpp │ │ │ ├── RendererGlAndroid.cpp │ │ │ ├── WindowImplAndroid.cpp │ │ │ └── android_native_app_glue.c │ │ ├── cocoa │ │ │ ├── AppCocoaTouch.cpp │ │ │ ├── AppImplCocoaTouch.mm │ │ │ ├── CinderViewCocoaTouch.mm │ │ │ ├── PlatformCocoa.cpp │ │ │ ├── RendererImpl2dCocoaTouchQuartz.mm │ │ │ └── RendererImplGlCocoaTouch.mm │ │ ├── glfw │ │ │ ├── AppGlfw.cpp │ │ │ ├── AppImplGlfw.cpp │ │ │ ├── AppImplGlfwMac.mm │ │ │ ├── RendererGlGlfw.cpp │ │ │ ├── RendererImplGlfwGl.cpp │ │ │ ├── RendererImplGlfwMetal.mm │ │ │ └── WindowImplGlfw.cpp │ │ ├── linux │ │ │ ├── AppImplLinuxGlfw.cpp │ │ │ ├── AppImplLinuxHeadless.cpp │ │ │ ├── AppLinux.cpp │ │ │ ├── MousePointer.h │ │ │ ├── PlatformLinux.cpp │ │ │ ├── RendererGlLinuxHeadless.cpp │ │ │ ├── WindowImplLinuxGlfw.cpp │ │ │ └── WindowImplLinuxHeadless.cpp │ │ └── msw │ │ │ ├── AppImplMsw.cpp │ │ │ ├── AppImplMswBasic.cpp │ │ │ ├── AppImplMswScreenSaver.cpp │ │ │ ├── AppMsw.cpp │ │ │ ├── PlatformMsw.cpp │ │ │ ├── RendererImpl2dGdi.cpp │ │ │ ├── RendererImplD3d11.cpp │ │ │ ├── RendererImplDx.cpp │ │ │ ├── RendererImplGlAngle.cpp │ │ │ └── RendererImplGlMsw.cpp │ ├── audio │ │ ├── ChannelRouterNode.cpp │ │ ├── Context.cpp │ │ ├── DelayNode.cpp │ │ ├── Device.cpp │ │ ├── FileOggVorbis.cpp │ │ ├── FilterNode.cpp │ │ ├── GenNode.cpp │ │ ├── InputNode.cpp │ │ ├── MonitorNode.cpp │ │ ├── Node.cpp │ │ ├── NodeMath.cpp │ │ ├── OutputNode.cpp │ │ ├── PanNode.cpp │ │ ├── Param.cpp │ │ ├── SamplePlayerNode.cpp │ │ ├── SampleRecorderNode.cpp │ │ ├── Source.cpp │ │ ├── Target.cpp │ │ ├── Utilities.cpp │ │ ├── Voice.cpp │ │ ├── WaveTable.cpp │ │ ├── android │ │ │ ├── ContextOpenSl.cpp │ │ │ └── DeviceManagerOpenSl.cpp │ │ ├── cocoa │ │ │ ├── CinderCoreAudio.cpp │ │ │ ├── ContextAudioUnit.cpp │ │ │ ├── DeviceManagerAudioSession.mm │ │ │ ├── DeviceManagerCoreAudio.cpp │ │ │ └── FileCoreAudio.cpp │ │ ├── dsp │ │ │ ├── Biquad.cpp │ │ │ ├── Converter.cpp │ │ │ ├── ConverterR8brain.cpp │ │ │ ├── Dsp.cpp │ │ │ ├── Fft.cpp │ │ │ └── ooura │ │ │ │ └── fftsg.cpp │ │ ├── linux │ │ │ ├── ContextJack.cpp │ │ │ ├── ContextPulseAudio.cpp │ │ │ ├── DeviceManagerJack.cpp │ │ │ ├── DeviceManagerPulseAudio.cpp │ │ │ └── FileAudioLoader.cpp │ │ └── msw │ │ │ ├── ContextWasapi.cpp │ │ │ ├── DeviceManagerWasapi.cpp │ │ │ ├── FileMediaFoundation.cpp │ │ │ └── MswUtil.cpp │ ├── cocoa │ │ ├── CinderCocoa.mm │ │ └── CinderCocoaTouch.mm │ ├── gl │ │ ├── Batch.cpp │ │ ├── BufferObj.cpp │ │ ├── BufferTexture.cpp │ │ ├── ConstantConversions.cpp │ │ ├── Context.cpp │ │ ├── Environment.cpp │ │ ├── EnvironmentCore.cpp │ │ ├── EnvironmentEs.cpp │ │ ├── Fbo.cpp │ │ ├── GlslProg.cpp │ │ ├── Pbo.cpp │ │ ├── Query.cpp │ │ ├── Sampler.cpp │ │ ├── Shader.cpp │ │ ├── ShaderPreprocessor.cpp │ │ ├── Sync.cpp │ │ ├── Texture.cpp │ │ ├── TextureFont.cpp │ │ ├── TextureFormatParsers.cpp │ │ ├── TransformFeedbackObj.cpp │ │ ├── Ubo.cpp │ │ ├── Vao.cpp │ │ ├── VaoImplCore.cpp │ │ ├── VaoImplEs.cpp │ │ ├── VaoImplSoftware.cpp │ │ ├── Vbo.cpp │ │ ├── VboMesh.cpp │ │ ├── draw.cpp │ │ ├── nv │ │ │ └── Multicast.cpp │ │ ├── scoped.cpp │ │ └── wrapper.cpp │ ├── ip │ │ ├── Blend.cpp │ │ ├── Blur.cpp │ │ ├── Checkerboard.cpp │ │ ├── EdgeDetect.cpp │ │ ├── Fill.cpp │ │ ├── Flip.cpp │ │ ├── Grayscale.cpp │ │ ├── Hdr.cpp │ │ ├── Premultiply.cpp │ │ ├── Resize.cpp │ │ ├── Threshold.cpp │ │ └── Trim.cpp │ ├── java │ │ └── org │ │ │ └── libcinder │ │ │ ├── Cinder.java │ │ │ ├── Log.java │ │ │ ├── app │ │ │ ├── CinderNativeActivity.java │ │ │ └── ComponentManager.java │ │ │ ├── audio │ │ │ └── DeviceManagerOpenSl.java │ │ │ ├── graphics │ │ │ └── ExSurfaceTexture.java │ │ │ ├── hardware │ │ │ ├── Camera.java │ │ │ ├── CameraV1.java │ │ │ └── CameraV2.java │ │ │ ├── net │ │ │ └── UrlLoader.java │ │ │ └── video │ │ │ ├── ExMediaPlayer.java │ │ │ └── VideoPlayer.java │ ├── linux │ │ ├── CinderLinux.cpp │ │ ├── GstPlayer.cpp │ │ └── Movie.cpp │ ├── msw │ │ ├── CinderMsw.cpp │ │ ├── CinderMswGdiPlus.cpp │ │ └── StackWalker.cpp │ ├── qtime │ │ ├── AvfUtils.mm │ │ ├── AvfWriter.mm │ │ ├── MovieWriter.cpp │ │ ├── QuickTimeGlImplAvf.cpp │ │ ├── QuickTimeGlImplLegacy.cpp │ │ ├── QuickTimeImplAvf.mm │ │ ├── QuickTimeImplLegacy.cpp │ │ └── QuickTimeUtils.cpp │ └── svg │ │ └── Svg.cpp ├── freetype │ ├── autofit │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afblue.c │ │ ├── afblue.cin │ │ ├── afblue.dat │ │ ├── afblue.h │ │ ├── afblue.hin │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afcover.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── aflatin2.c │ │ ├── aflatin2.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afpic.c │ │ ├── afpic.h │ │ ├── afranges.c │ │ ├── afranges.h │ │ ├── afscript.h │ │ ├── afshaper.c │ │ ├── afshaper.h │ │ ├── afstyles.h │ │ ├── aftypes.h │ │ ├── afwarp.c │ │ ├── afwarp.h │ │ ├── afwrtsys.h │ │ └── autofit.c │ ├── base │ │ ├── basepic.c │ │ ├── basepic.h │ │ ├── ftadvanc.c │ │ ├── ftapi.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbdf.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftcid.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── ftfntfmt.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgxval.c │ │ ├── fthash.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmac.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftotval.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpfr.c │ │ ├── ftpic.c │ │ ├── ftpsprop.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftwinfnt.c │ │ ├── md5.c │ │ └── md5.h │ ├── bdf │ │ ├── bdf.c │ │ ├── bdf.h │ │ ├── bdfdrivr.c │ │ ├── bdfdrivr.h │ │ ├── bdferror.h │ │ └── bdflib.c │ ├── bzip2 │ │ └── ftbzip2.c │ ├── cache │ │ ├── ftcache.c │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcerror.h │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcimage.c │ │ ├── ftcimage.h │ │ ├── ftcmanag.c │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcmru.h │ │ ├── ftcsbits.c │ │ └── ftcsbits.h │ ├── cff │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cffpic.c │ │ ├── cffpic.h │ │ └── cfftoken.h │ ├── cid │ │ ├── ciderrs.h │ │ ├── cidgload.c │ │ ├── cidgload.h │ │ ├── cidload.c │ │ ├── cidload.h │ │ ├── cidobjs.c │ │ ├── cidobjs.h │ │ ├── cidparse.c │ │ ├── cidparse.h │ │ ├── cidriver.c │ │ ├── cidriver.h │ │ ├── cidtoken.h │ │ └── type1cid.c │ ├── gxvalid │ │ ├── gxvalid.c │ │ ├── gxvalid.h │ │ ├── gxvbsln.c │ │ ├── gxvcommn.c │ │ ├── gxvcommn.h │ │ ├── gxverror.h │ │ ├── gxvfeat.c │ │ ├── gxvfeat.h │ │ ├── gxvfgen.c │ │ ├── gxvjust.c │ │ ├── gxvkern.c │ │ ├── gxvlcar.c │ │ ├── gxvmod.c │ │ ├── gxvmod.h │ │ ├── gxvmort.c │ │ ├── gxvmort.h │ │ ├── gxvmort0.c │ │ ├── gxvmort1.c │ │ ├── gxvmort2.c │ │ ├── gxvmort4.c │ │ ├── gxvmort5.c │ │ ├── gxvmorx.c │ │ ├── gxvmorx.h │ │ ├── gxvmorx0.c │ │ ├── gxvmorx1.c │ │ ├── gxvmorx2.c │ │ ├── gxvmorx4.c │ │ ├── gxvmorx5.c │ │ ├── gxvopbd.c │ │ ├── gxvprop.c │ │ └── gxvtrak.c │ ├── gzip │ │ ├── adler32.c │ │ ├── ftgzip.c │ │ ├── ftzconf.h │ │ ├── infblock.c │ │ ├── infblock.h │ │ ├── infcodes.c │ │ ├── infcodes.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── infutil.c │ │ ├── infutil.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── lzw │ │ ├── ftlzw.c │ │ ├── ftzopen.c │ │ └── ftzopen.h │ ├── otvalid │ │ ├── otvalid.c │ │ ├── otvalid.h │ │ ├── otvbase.c │ │ ├── otvcommn.c │ │ ├── otvcommn.h │ │ ├── otverror.h │ │ ├── otvgdef.c │ │ ├── otvgpos.c │ │ ├── otvgpos.h │ │ ├── otvgsub.c │ │ ├── otvjstf.c │ │ ├── otvmath.c │ │ ├── otvmod.c │ │ └── otvmod.h │ ├── pcf │ │ ├── pcf.c │ │ ├── pcf.h │ │ ├── pcfdrivr.c │ │ ├── pcfdrivr.h │ │ ├── pcferror.h │ │ ├── pcfread.c │ │ ├── pcfread.h │ │ ├── pcfutil.c │ │ └── pcfutil.h │ ├── pfr │ │ ├── pfr.c │ │ ├── pfrcmap.c │ │ ├── pfrcmap.h │ │ ├── pfrdrivr.c │ │ ├── pfrdrivr.h │ │ ├── pfrerror.h │ │ ├── pfrgload.c │ │ ├── pfrgload.h │ │ ├── pfrload.c │ │ ├── pfrload.h │ │ ├── pfrobjs.c │ │ ├── pfrobjs.h │ │ ├── pfrsbit.c │ │ ├── pfrsbit.h │ │ └── pfrtypes.h │ ├── psaux │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── cffdecode.c │ │ ├── cffdecode.h │ │ ├── psarrst.c │ │ ├── psarrst.h │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psblues.c │ │ ├── psblues.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── pserror.c │ │ ├── pserror.h │ │ ├── psfixed.h │ │ ├── psfont.c │ │ ├── psfont.h │ │ ├── psft.c │ │ ├── psft.h │ │ ├── psglue.h │ │ ├── pshints.c │ │ ├── pshints.h │ │ ├── psintrp.c │ │ ├── psintrp.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── psread.c │ │ ├── psread.h │ │ ├── psstack.c │ │ ├── psstack.h │ │ ├── pstypes.h │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ ├── pshinter │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshpic.c │ │ ├── pshpic.h │ │ ├── pshrec.c │ │ └── pshrec.h │ ├── psnames │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pspic.c │ │ ├── pspic.h │ │ └── pstables.h │ ├── raster │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── raster.c │ │ ├── rasterrs.h │ │ ├── rastpic.c │ │ └── rastpic.h │ ├── sfnt │ │ ├── pngshim.c │ │ ├── pngshim.h │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfntpic.c │ │ ├── sfntpic.h │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ └── ttsbit.h │ ├── smooth │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── ftspic.c │ │ ├── ftspic.h │ │ └── smooth.c │ ├── tools │ │ ├── afblue.pl │ │ ├── apinames.c │ │ ├── chktrcmp.py │ │ ├── cordic.py │ │ ├── docmaker │ │ │ ├── content.py │ │ │ ├── docbeauty.py │ │ │ ├── docmaker.py │ │ │ ├── formatter.py │ │ │ ├── sources.py │ │ │ ├── tohtml.py │ │ │ └── utils.py │ │ ├── ftfuzzer │ │ │ ├── README │ │ │ ├── ftfuzzer.cc │ │ │ ├── ftmutator.cc │ │ │ ├── rasterfuzzer.cc │ │ │ └── runinput.cc │ │ ├── ftrandom │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── ftrandom.c │ │ ├── glnames.py │ │ ├── no-copyright │ │ ├── test_afm.c │ │ ├── test_bbox.c │ │ ├── test_trig.c │ │ ├── update-copyright │ │ └── update-copyright-year │ ├── truetype │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpic.c │ │ ├── ttpic.h │ │ ├── ttpload.c │ │ ├── ttpload.h │ │ ├── ttsubpix.c │ │ └── ttsubpix.h │ ├── type1 │ │ ├── t1afm.c │ │ ├── t1afm.h │ │ ├── t1driver.c │ │ ├── t1driver.h │ │ ├── t1errors.h │ │ ├── t1gload.c │ │ ├── t1gload.h │ │ ├── t1load.c │ │ ├── t1load.h │ │ ├── t1objs.c │ │ ├── t1objs.h │ │ ├── t1parse.c │ │ ├── t1parse.h │ │ ├── t1tokens.h │ │ └── type1.c │ ├── type42 │ │ ├── t42drivr.c │ │ ├── t42drivr.h │ │ ├── t42error.h │ │ ├── t42objs.c │ │ ├── t42objs.h │ │ ├── t42parse.c │ │ ├── t42parse.h │ │ ├── t42types.h │ │ └── type42.c │ └── winfonts │ │ ├── fnterrs.h │ │ ├── winfnt.c │ │ └── winfnt.h ├── glad │ ├── glad.c │ ├── glad_es.c │ ├── glad_glx.c │ └── glad_wgl.c ├── glfw │ ├── deps │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad │ │ │ ├── gl.h │ │ │ ├── gles2.h │ │ │ └── vulkan.h │ │ ├── linmath.h │ │ ├── mingw │ │ │ ├── _mingw_dxhelper.h │ │ │ ├── dinput.h │ │ │ └── xinput.h │ │ ├── nuklear.h │ │ ├── nuklear_glfw_gl2.h │ │ ├── stb_image_write.h │ │ ├── tinycthread.c │ │ ├── tinycthread.h │ │ └── wayland │ │ │ ├── fractional-scale-v1.xml │ │ │ ├── idle-inhibit-unstable-v1.xml │ │ │ ├── pointer-constraints-unstable-v1.xml │ │ │ ├── relative-pointer-unstable-v1.xml │ │ │ ├── viewporter.xml │ │ │ ├── wayland.xml │ │ │ ├── xdg-activation-v1.xml │ │ │ ├── xdg-decoration-unstable-v1.xml │ │ │ └── xdg-shell.xml │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_time.h │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── glfw.rc.in │ │ ├── glx_context.c │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mappings.h │ │ ├── mappings.h.in │ │ ├── monitor.c │ │ ├── nsgl_context.m │ │ ├── null_init.c │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── null_monitor.c │ │ ├── null_platform.h │ │ ├── null_window.c │ │ ├── osmesa_context.c │ │ ├── platform.c │ │ ├── platform.h │ │ ├── posix_module.c │ │ ├── posix_poll.c │ │ ├── posix_poll.h │ │ ├── posix_thread.c │ │ ├── posix_thread.h │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_module.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_thread.c │ │ ├── win32_thread.h │ │ ├── win32_time.c │ │ ├── win32_time.h │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h ├── imgui │ ├── imgui.cpp │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_freetype.cpp │ ├── imgui_impl_opengl3.cpp │ ├── imgui_stdlib.cpp │ ├── imgui_tables.cpp │ └── imgui_widgets.cpp ├── jsoncpp │ └── jsoncpp.cpp ├── libtess2 │ ├── bucketalloc.c │ ├── bucketalloc.h │ ├── dict.c │ ├── dict.h │ ├── geom.c │ ├── geom.h │ ├── mesh.c │ ├── mesh.h │ ├── priorityq.c │ ├── priorityq.h │ ├── sweep.c │ ├── sweep.h │ ├── tess.c │ ├── tess.h │ └── tesselator.h ├── linebreak │ ├── linebreak.c │ ├── linebreak.h │ ├── linebreakdata.c │ ├── linebreakdef.c │ └── linebreakdef.h ├── oggvorbis │ ├── ogg │ │ ├── bitwise.c │ │ └── framing.c │ ├── readme.txt │ └── vorbis │ │ ├── analysis.c │ │ ├── backends.h │ │ ├── bitrate.c │ │ ├── bitrate.h │ │ ├── block.c │ │ ├── books │ │ ├── coupled │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ └── res_books_uncoupled.h │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec_internal.h │ │ ├── envelope.c │ │ ├── envelope.h │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── highlevel.h │ │ ├── info.c │ │ ├── lookup.c │ │ ├── lookup.h │ │ ├── lookup_data.h │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── mapping0.c │ │ ├── masking.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── misc.h │ │ ├── modes │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ │ ├── os.h │ │ ├── psy.c │ │ ├── psy.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res0.c │ │ ├── scales.h │ │ ├── sharedbook.c │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── synthesis.c │ │ ├── vorbisenc.c │ │ ├── vorbisfile.c │ │ ├── window.c │ │ └── window.h ├── r8brain │ ├── CDSPBlockConvolver.h │ ├── CDSPFIRFilter.h │ ├── CDSPFracInterpolator.h │ ├── CDSPRealFFT.h │ ├── CDSPResampler.h │ ├── CDSPSincFilterGen.h │ ├── License.txt │ ├── fft4g.h │ ├── r8bbase.cpp │ ├── r8bbase.h │ └── r8bconf.h └── zlib │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── test ├── AABBtest │ ├── src │ │ └── AABBtestApp.cpp │ ├── vc2015 │ │ ├── AABBtest.sln │ │ ├── AABBtest.vcxproj │ │ └── AABBtest.vcxproj.filters │ └── xcode │ │ ├── AABBtest.xcodeproj │ │ └── project.pbxproj │ │ ├── Info.plist │ │ └── prefix.pch ├── Android │ ├── ActivityStartStop │ │ ├── androidstudio │ │ │ └── ActivityStartStop │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── activitystartstop │ │ │ │ │ │ └── ActivityStartStopActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── ActivityStartStop.cpp │ ├── Backtrace │ │ ├── androidstudio │ │ │ └── Backtrace │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── backtrace │ │ │ │ │ │ └── BacktraceActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ └── src │ │ │ ├── Backtrace.cpp │ │ │ ├── OtherClass.cpp │ │ │ └── OtherClass.h │ ├── CaptureTest │ │ ├── androidstudio │ │ │ └── CaptureTest │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── capturetest │ │ │ │ │ │ └── CaptureTestActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── CaptureTest.cpp │ ├── GetSpecialDirs │ │ ├── androidstudio │ │ │ └── GetSpecialDirs │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── getspecialdirs │ │ │ │ │ │ └── GetSpecialDirsActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── GetSpecialDirs.cpp │ ├── InputEvents │ │ ├── androidstudio │ │ │ └── InputEvents │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── inputevents │ │ │ │ │ │ └── InputEventsActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── InputEvents.cpp │ ├── LaunchTwitter │ │ ├── androidstudio │ │ │ └── LaunchTwitter │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── launchtwitter │ │ │ │ │ │ └── LaunchTwitterActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── LaunchTwitter.cpp │ ├── LaunchWebBrowser │ │ ├── androidstudio │ │ │ └── LaunchWebBrowser │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── launchwebbrowser │ │ │ │ │ │ └── LaunchWebBrowserActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── LaunchWebBrowser.cpp │ ├── LoggerLevels │ │ ├── androidstudio │ │ │ └── LoggerLevels │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── loggerlevels │ │ │ │ │ │ └── LoggerLevelsActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── LoggerLevels.cpp │ ├── NormalizePathTest │ │ ├── androidstudio │ │ │ └── NormalizePathTest │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── normalizepathtest │ │ │ │ │ │ └── NormalizePathTestActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── NormalizePathTest.cpp │ ├── OpenGLTest │ │ ├── androidstudio │ │ │ └── OpenGLTest │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── opengltest │ │ │ │ │ │ └── OpenGLTestActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── OpenGLTest.cpp │ ├── ScratchApp │ │ ├── androidstudio │ │ │ └── ScratchApp │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── scratchapp │ │ │ │ │ │ └── ScratchAppActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── assets │ │ │ └── bbb.mp4 │ │ └── src │ │ │ └── ScratchApp.cpp │ ├── Sensors │ │ ├── androidstudio │ │ │ └── Sensors │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── sensors │ │ │ │ │ │ └── SensorsActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── Sensors.cpp │ ├── SetWallpaper │ │ ├── androidstudio │ │ │ └── SetWallpaper │ │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libcinder │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── setwallpaper │ │ │ │ │ │ └── SetWallpaperActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ └── src │ │ │ └── SetWallpaper.cpp │ └── SoundRawAPI │ │ ├── androidstudio │ │ └── SoundRawAPI │ │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libcinder │ │ │ │ │ └── samples │ │ │ │ │ └── soundrawapi │ │ │ │ │ └── SoundRawAPIActivity.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ └── src │ │ └── SoundRawAPI.cpp ├── AppCocoaViewTest │ ├── AppCocoaViewTest.xcodeproj │ │ └── project.pbxproj │ ├── TestApp │ │ ├── AppCocoaViewTest-Info.plist │ │ ├── AppCocoaViewTest-Prefix.pch │ │ └── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ └── src │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── MyCinderApp.cpp │ │ ├── MyCinderApp.h │ │ └── main.m ├── AppTest │ ├── assets │ │ └── mustache-green.png │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── mustache-blue.png │ ├── src │ │ └── AppTestApp.cpp │ ├── vc2015 │ │ ├── AppTest.sln │ │ ├── AppTest.vcxproj │ │ ├── AppTest.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── AppTest.xcodeproj │ │ │ └── project.pbxproj │ │ ├── AppTest_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── AppTest.xcodeproj │ │ └── project.pbxproj │ │ ├── AppTest_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ └── Info.plist ├── ArcballTest │ ├── include │ │ └── Resources.h │ ├── src │ │ └── ArcballTestApp.cpp │ ├── vc2015 │ │ ├── ArcballTest.sln │ │ ├── ArcballTest.vcxproj │ │ ├── ArcballTest.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── ArcballTest.xcodeproj │ │ └── project.pbxproj │ │ ├── ArcballTest_Prefix.pch │ │ └── Info.plist ├── CMake │ └── TestApp │ │ ├── CMakeLists.txt │ │ ├── build_for_linux.sh │ │ ├── build_for_macosx.sh │ │ └── src │ │ └── BasicApp.cpp ├── CameraLensShiftTest │ ├── include │ │ └── Resources.h │ ├── src │ │ └── CameraLensShiftTestApp.cpp │ └── vc11 │ │ ├── CameraLensShiftTest.sln │ │ ├── CameraLensShiftTest.vcxproj │ │ ├── CameraLensShiftTest.vcxproj.filters │ │ ├── Resources.rc │ │ └── cinder_app_icon.ico ├── CaptureTest │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── CaptureTestApp.cpp │ ├── vc2015 │ │ ├── CaptureTest.sln │ │ ├── CaptureTest.vcxproj │ │ └── CaptureTest.vcxproj.filters │ ├── vc2022 │ │ ├── CaptureTest.sln │ │ ├── CaptureTest.vcxproj │ │ ├── CaptureTest.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── CaptureTest.xcodeproj │ │ └── project.pbxproj │ │ ├── CaptureTest_Prefix.pch │ │ └── Info.plist ├── CinderDLL │ ├── proj │ │ └── vc2015 │ │ │ ├── CinderDLL.sln │ │ │ ├── CinderDLL.vcxproj │ │ │ └── CinderDLL.vcxproj.filters │ └── src │ │ └── CinderDLLApp.cpp ├── DebugTest │ ├── include │ │ └── Resources.h │ ├── src │ │ └── DebugTestApp.cpp │ ├── vc2015 │ │ ├── DebugTest.sln │ │ ├── DebugTest.vcxproj │ │ ├── DebugTest.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── DebugTest.xcodeproj │ │ └── project.pbxproj │ │ ├── DebugTest_Prefix.pch │ │ └── Info.plist ├── DisplayTest │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── DisplayTestApp.cpp │ ├── vc2015 │ │ ├── DisplayTest.sln │ │ ├── DisplayTest.vcxproj │ │ ├── DisplayTest.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── DisplayTest.xcodeproj │ │ │ └── project.pbxproj │ │ ├── DisplayTest_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── DisplayTest.xcodeproj │ │ └── project.pbxproj │ │ ├── DisplayTest_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ └── Info.plist ├── ExtrudeSpline │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── cinder_app_icon.ico │ ├── src │ │ └── ExtrudeSplineApp.cpp │ ├── vc2015 │ │ ├── ExtrudeSpline.sln │ │ ├── ExtrudeSpline.vcxproj │ │ ├── ExtrudeSpline.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── ExtrudeSpline.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ExtrudeSpline_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── ExtrudeSpline.xcodeproj │ │ └── project.pbxproj │ │ ├── ExtrudeSpline_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ └── LaunchScreen.xib ├── FloatCamera │ ├── src │ │ └── FloatCameraApp.cpp │ ├── vc2015 │ │ ├── FloatCamera.sln │ │ ├── FloatCamera.vcxproj │ │ ├── FloatCamera.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── FloatCamera.xcodeproj │ │ └── project.pbxproj │ │ ├── FloatCamera_Prefix.pch │ │ └── Info.plist ├── FreeType │ └── BasicApp │ │ ├── androidstudio │ │ └── BasicApp │ │ │ └── app │ │ │ └── build.gradle │ │ └── src │ │ └── BasicApp.cpp ├── GLTileRenderTest │ ├── src │ │ └── GLTileRenderTestApp.cpp │ └── xcode │ │ ├── GLTileRenderTest.xcodeproj │ │ └── project.pbxproj │ │ ├── GLTileRenderTest_Prefix.pch │ │ └── Info.plist ├── GeomSourceMods │ ├── include │ │ └── Resources.h │ ├── src │ │ └── GeomSourceModsApp.cpp │ ├── vc2015 │ │ ├── GeomSourceMods.sln │ │ ├── GeomSourceMods.vcxproj │ │ ├── GeomSourceMods.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── GeomSourceMods.xcodeproj │ │ └── project.pbxproj │ │ ├── GeomSourceMods_Prefix.pch │ │ └── Info.plist ├── LineBreakTest │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ └── LineBreakTestApp.cpp │ ├── vc11 │ │ ├── LineBreakTest.sln │ │ ├── LineBreakTest.vcxproj │ │ └── LineBreakTest.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── LineBreakTest.xcodeproj │ │ └── project.pbxproj │ │ └── LineBreakTest_Prefix.pch ├── Linux │ ├── AudioLoader │ │ ├── assets │ │ │ ├── Drumstylin.wav │ │ │ └── Sirius.mp3 │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ └── src │ │ │ └── AudioLoaderApp.cpp │ ├── GstPlayerRefactorTest │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ └── src │ │ │ └── GstPlayerTestApp.cpp │ ├── HeadlessTestApp │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ └── src │ │ │ └── HeadlessTestApp.cpp │ ├── Input │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ └── src │ │ │ └── InputApp.cpp │ ├── LoadUrl │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ └── src │ │ │ └── LoadUrlApp.cpp │ └── PlatformTest │ │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ │ └── src │ │ └── PlatformTestApp.cpp ├── ScreenSaverTest │ ├── include │ │ ├── Configuration.h │ │ └── Resources.h │ ├── src │ │ ├── MacConfigDialog.h │ │ ├── MacConfigDialog.mm │ │ ├── ScreenSaverTestApp.cpp │ │ ├── WindowsConfig.cpp │ │ └── WindowsConfig.h │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── TestScreensaver.sln │ │ ├── TestScreensaver.vcxproj │ │ └── TestScreensaver.vcxproj.filters │ └── xcode │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── ScreenSaverTest.xcodeproj │ │ └── project.pbxproj │ │ ├── ScreenSaverTest_Prefix.pch │ │ ├── exported_symbols.txt │ │ └── resources │ │ ├── MacConfigDialog.xib │ │ ├── thumbnail.png │ │ └── thumbnail@2x.png ├── ShapeTest │ ├── include │ │ └── Resources.h │ ├── src │ │ └── ShapeTestApp.cpp │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── ShapeTest.sln │ │ ├── ShapeTest.vcxproj │ │ └── ShapeTest.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── ShapeTest.xcodeproj │ │ └── project.pbxproj │ │ └── ShapeTest_Prefix.pch ├── SignalsTest │ ├── src │ │ └── SignalsBenchmark.cpp │ ├── vc2015 │ │ ├── SignalsBenchmark.vcxproj │ │ ├── SignalsBenchmark.vcxproj.filters │ │ ├── SignalsTest.sln │ │ ├── SignalsTest.vcxproj │ │ └── SignalsTest.vcxproj.filters │ └── xcode │ │ └── SignalsTest.xcodeproj │ │ └── project.pbxproj ├── SphereProjection │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── SphereProjectionApp.cpp │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── SphereProjection.sln │ │ ├── SphereProjection.vcxproj │ │ └── SphereProjection.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── SphereProjection.xcodeproj │ │ └── project.pbxproj │ │ └── SphereProjection_Prefix.pch ├── StackBlurTest │ ├── assets │ │ ├── LICENSE │ │ └── great_wall.jpg │ ├── include │ │ └── Resources.h │ ├── src │ │ └── StackBlurTestApp.cpp │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── StackBlurTest.sln │ │ ├── StackBlurTest.vcxproj │ │ └── StackBlurTest.vcxproj.filters │ ├── xcode │ │ ├── Info.plist │ │ ├── StackBlurTest.xcodeproj │ │ │ └── project.pbxproj │ │ └── StackBlurTest_Prefix.pch │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── StackBlurTest.xcodeproj │ │ └── project.pbxproj │ │ └── StackBlurTest_Prefix.pch ├── SystemTest │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── cinder_app_icon.ico │ ├── src │ │ └── SystemTestApp.cpp │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── SystemTest.sln │ │ ├── SystemTest.vcxproj │ │ └── SystemTest.vcxproj.filters │ ├── xcode │ │ ├── Info.plist │ │ ├── SystemTest.xcodeproj │ │ │ └── project.pbxproj │ │ └── SystemTest_Prefix.pch │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── SystemTest.xcodeproj │ │ └── project.pbxproj │ │ └── SystemTest_Prefix.pch ├── ThresholdTest │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── ThresholdTestApp.cpp │ └── xcode │ │ ├── Info.plist │ │ ├── ThresholdTest.xcodeproj │ │ └── project.pbxproj │ │ └── prefix.pch ├── TouchAudioTest │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── booyah.mp3 │ ├── src │ │ └── TouchAudioTestApp.cpp │ └── xcode │ │ ├── Info.plist │ │ ├── TouchAudioTest-Info.plist │ │ ├── TouchAudioTest.xcodeproj │ │ └── project.pbxproj │ │ └── TouchAudioTest_Prefix.pch ├── TriMeshReadWriteTest │ ├── assets │ │ ├── shader.frag │ │ └── shader.vert │ ├── include │ │ └── Resources.h │ ├── src │ │ └── TriMeshReadWriteTestApp.cpp │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── TriMeshReadWriteTest.sln │ │ ├── TriMeshReadWriteTest.vcxproj │ │ └── TriMeshReadWriteTest.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── TriMeshReadWriteTest.xcodeproj │ │ └── project.pbxproj │ │ └── prefix.pch ├── Video │ └── VideoPlayerScrubTest │ │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ │ └── src │ │ └── VideoPlayerScrubTestApp.cpp ├── WindowToWorldTest │ ├── include │ │ └── Resources.h │ ├── src │ │ └── WindowToWorldTestApp.cpp │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── WindowToWorldTest.sln │ │ ├── WindowToWorldTest.vcxproj │ │ └── WindowToWorldTest.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── WindowToWorldTest.xcodeproj │ │ └── project.pbxproj │ │ └── WindowToWorldTest_Prefix.pch ├── XMLTest │ ├── assets │ │ └── library.xml │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── cinder_app_icon.ico │ ├── src │ │ └── XMLTestApp.cpp │ ├── vc11 │ │ ├── Resources.rc │ │ ├── XMLTest.sln │ │ ├── XMLTest.vcxproj │ │ └── XMLTest.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── XMLTest.xcodeproj │ │ └── project.pbxproj │ │ └── XMLTest_Prefix.pch ├── _audio │ ├── AudioTests │ │ ├── assets │ │ │ ├── tone440.mp3 │ │ │ ├── tone440.ogg │ │ │ ├── tone440.wav │ │ │ ├── tone440L220R.mp3 │ │ │ ├── tone440L220R.ogg │ │ │ ├── tone440L220R.wav │ │ │ ├── tone440_float.wav │ │ │ └── tone440_loop.wav │ │ ├── proj │ │ │ ├── cmake │ │ │ │ └── CMakeLists.txt │ │ │ ├── vc2022 │ │ │ │ ├── AudioTests.sln │ │ │ │ ├── AudioTests.vcxproj │ │ │ │ ├── AudioTests.vcxproj.filters │ │ │ │ ├── PropertySheet.props │ │ │ │ └── Resources.rc │ │ │ └── xcode │ │ │ │ ├── AudioTests.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── AudioTests_Prefix.pch │ │ │ │ └── Info.plist │ │ └── src │ │ │ ├── AudioTest.h │ │ │ ├── AudioTestsApp.cpp │ │ │ ├── DeviceTest.cpp │ │ │ ├── DeviceTest.h │ │ │ ├── Factory.h │ │ │ ├── InterleavedPassThruNode.h │ │ │ ├── NodeBasicTest.cpp │ │ │ ├── NodeBasicTest.h │ │ │ ├── NodeEffectsTest.cpp │ │ │ ├── NodeEffectsTest.h │ │ │ ├── ParamTest.cpp │ │ │ ├── ParamTest.h │ │ │ ├── SamplePlayerTest.cpp │ │ │ ├── SamplePlayerTest.h │ │ │ ├── SpectralTest.cpp │ │ │ ├── SpectralTest.h │ │ │ ├── StressTest.cpp │ │ │ ├── StressTest.h │ │ │ ├── VoiceTest.cpp │ │ │ ├── VoiceTest.h │ │ │ ├── WaveTableTest.cpp │ │ │ └── WaveTableTest.h │ └── EffectsAudioUnitTest │ │ ├── src │ │ └── EffectsAudioUnitTestApp.cpp │ │ ├── xcode │ │ ├── EffectsAudioUnitTest.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── EffectsAudioUnitTest.xcscheme │ │ ├── EffectsAudioUnitTest_Prefix.pch │ │ └── Info.plist │ │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── EffectsAudioUnitTest.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── EffectsAudioUnitTest-ios.xcscheme │ │ ├── EffectsAudioUnitTest_Prefix.pch │ │ └── Info.plist ├── _opengl │ ├── BufferTexture │ │ ├── assets │ │ │ ├── bufferTexture.frag │ │ │ └── bufferTexture.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── BufferTextureApp.cpp │ │ ├── vc2015 │ │ │ ├── BufferTexture.sln │ │ │ ├── BufferTexture.vcxproj │ │ │ ├── BufferTexture.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── BufferTexture.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── BufferTexture_Prefix.pch │ │ │ └── Info.plist │ ├── CompressedTexture │ │ ├── assets │ │ │ ├── compression_test.png │ │ │ ├── compression_test_bc7.dds │ │ │ ├── compression_test_dxt1.dds │ │ │ ├── compression_test_dxt3.dds │ │ │ ├── compression_test_dxt5.dds │ │ │ ├── compression_test_etc1.ktx │ │ │ ├── compression_test_etc2.ktx │ │ │ ├── compression_test_lum_3dc.dds │ │ │ ├── compression_test_lum_dxt5a.dds │ │ │ ├── compression_test_pvrtc_2bit.ktx │ │ │ └── compression_test_pvrtc_4bit.ktx │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── CompressedTextureApp.cpp │ │ ├── vc2012 │ │ │ ├── CompressedTexture.sln │ │ │ ├── CompressedTexture.vcxproj │ │ │ ├── CompressedTexture.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── CompressedTexture.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── CompressedTexture_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── CompressedTexture.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── CompressedTexture_Prefix.pch │ │ │ ├── Default-568h@2x.png │ │ │ └── Info.plist │ ├── ConvenienceDrawingMethods │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── ConvenienceDrawingMethodsApp.cpp │ │ ├── vc2012 │ │ │ ├── ConvenienceDrawingMethods.sln │ │ │ ├── ConvenienceDrawingMethods.vcxproj │ │ │ ├── ConvenienceDrawingMethods.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── ConvenienceDrawingMethods.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── ConvenienceDrawingMethods_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── ConvenienceDrawingMethods.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── ConvenienceDrawingMethods_Prefix.pch │ │ │ ├── Default-568h@2x.png │ │ │ └── Info.plist │ ├── CubeMapLayout │ │ ├── assets │ │ │ ├── horizontal.png │ │ │ ├── horizontal_cross.jpg │ │ │ ├── sky_box.frag │ │ │ ├── sky_box.vert │ │ │ ├── vertical.hdr │ │ │ ├── vertical_cross.png │ │ │ └── vertical_cross_layout.png │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ └── cmake │ │ │ │ └── CMakeLists.txt │ │ ├── src │ │ │ └── CubeMapLayoutApp.cpp │ │ ├── vc2015 │ │ │ ├── CubeMapLayout.sln │ │ │ ├── CubeMapLayout.vcxproj │ │ │ ├── CubeMapLayout.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── CubeMapLayout.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── CubeMapLayout_Prefix.pch │ │ │ └── Info.plist │ ├── GlslProgAttribTest │ │ ├── assets │ │ │ ├── InstancedModelMatrix.frag │ │ │ ├── InstancedModelMatrix.vert │ │ │ ├── UniformTest.frag │ │ │ └── UniformTest.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── GlslProgAttribTestApp.cpp │ │ ├── vc2015 │ │ │ ├── GlslProgAttribTest.sln │ │ │ ├── GlslProgAttribTest.vcxproj │ │ │ ├── GlslProgAttribTest.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── GlslProgAttribTest.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── GlslProgAttribTest_Prefix.pch │ │ │ └── Info.plist │ │ └── xcode_ios │ │ │ ├── GlslProgAttribTest.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── GlslProgAttribTest_Prefix.pch │ │ │ ├── Images.xcassets │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667@2x.png │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ └── Info.plist │ ├── ImageSourcePbo │ │ ├── assets │ │ │ └── compression_test.png │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── ImageSourcePboApp.cpp │ │ ├── vc2012 │ │ │ ├── ImageSourcePbo.sln │ │ │ ├── ImageSourcePbo.vcxproj │ │ │ ├── ImageSourcePbo.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── ImageSourcePbo.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── ImageSourcePbo_Prefix.pch │ │ │ └── Info.plist │ ├── IntegerAttribTest │ │ ├── assets │ │ │ ├── integer.frag │ │ │ ├── integer.vert │ │ │ ├── integer_es3.frag │ │ │ └── integer_es3.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── IntegerAttribTestApp.cpp │ │ ├── vc2015 │ │ │ ├── IntegerAttribTest.sln │ │ │ ├── IntegerAttribTest.vcxproj │ │ │ ├── IntegerAttribTest.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── IntegerAttribTest.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── IntegerAttribTest_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Images.xcassets │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667@2x.png │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ ├── Info.plist │ │ │ ├── IntegerAttribTest.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── IntegerAttribTest_Prefix.pch │ ├── ObjectTracking │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── ObjectTrackingApp.cpp │ │ ├── vc2012 │ │ │ ├── ObjectTracking.sln │ │ │ ├── ObjectTracking.vcxproj │ │ │ ├── ObjectTracking.vcxproj.filters │ │ │ └── Resources.rc │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── ObjectTracking.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── ObjectTracking_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── ObjectTracking.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── ObjectTracking_Prefix.pch │ ├── PboUploadTest │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── PboUploadTestApp.cpp │ │ ├── vc2012 │ │ │ ├── PboUploadTest.sln │ │ │ ├── PboUploadTest.vcxproj │ │ │ ├── PboUploadTest.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── PboUploadTest.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── PboUploadTest_Prefix.pch │ ├── QueryTest │ │ ├── assets │ │ │ ├── noise.frag │ │ │ └── pass.vert │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── QueryTestApp.cpp │ │ ├── vc2015 │ │ │ ├── QueryTest.sln │ │ │ ├── QueryTest.vcxproj │ │ │ ├── QueryTest.vcxproj.filters │ │ │ └── Resources.rc │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── QueryTest.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── QueryTest_Prefix.pch │ ├── SamplerObject │ │ ├── include │ │ │ └── Resources.h │ │ ├── proj │ │ │ ├── cmake │ │ │ │ └── CMakeLists.txt │ │ │ ├── vc2015 │ │ │ │ ├── Resources.rc │ │ │ │ ├── SamplerObject.sln │ │ │ │ ├── SamplerObject.vcxproj │ │ │ │ └── SamplerObject.vcxproj.filters │ │ │ ├── xcode │ │ │ │ ├── Info.plist │ │ │ │ ├── SamplerObject.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── SamplerObject_Prefix.pch │ │ │ └── xcode_ios │ │ │ │ ├── Images.xcassets │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667@2x.png │ │ │ │ │ └── Default-736h@3x~iphone.png │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.xib │ │ │ │ ├── SamplerObject.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── SamplerObject_Prefix.pch │ │ └── src │ │ │ └── SamplerObjectApp.cpp │ ├── ShaderPreprocessorTest │ │ ├── assets │ │ │ ├── common.glsl │ │ │ ├── commonSimple.glsl │ │ │ ├── hash.glsl │ │ │ ├── passthrough.vert │ │ │ ├── shaderWithInclude.frag │ │ │ ├── simple.frag │ │ │ └── wrong_hash.glsl │ │ ├── src │ │ │ └── ShaderPreprocessorTestApp.cpp │ │ ├── vc2015 │ │ │ ├── ShaderPreprocessorTest.sln │ │ │ ├── ShaderPreprocessorTest.vcxproj │ │ │ └── ShaderPreprocessorTest.vcxproj.filters │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── ShaderPreprocessorTest.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── prefix.pch │ ├── Texture1d │ │ ├── assets │ │ │ └── gradient.png │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── Texture1dApp.cpp │ │ ├── vc2015 │ │ │ ├── Resources.rc │ │ │ ├── Texture1d.sln │ │ │ ├── Texture1d.vcxproj │ │ │ └── Texture1d.vcxproj.filters │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── Texture1d.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── Texture1d_Prefix.pch │ ├── Texture3d │ │ ├── assets │ │ │ ├── shader.vert │ │ │ ├── shader_2d_array.frag │ │ │ └── shader_3d.frag │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── Texture3dApp.cpp │ │ ├── vc2012 │ │ │ ├── Resources.rc │ │ │ ├── Texture3d.sln │ │ │ ├── Texture3d.vcxproj │ │ │ └── Texture3d.vcxproj.filters │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── Texture3d.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── Texture3d_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── Texture3d.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── Texture3d_Prefix.pch │ ├── TextureUpload │ │ ├── assets │ │ │ ├── fish.jpg │ │ │ ├── fish2.jpg │ │ │ ├── fish2_alpha.png │ │ │ ├── fish_alpha.png │ │ │ └── photo_credit.txt │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── TextureUploadApp.cpp │ │ ├── vc2015 │ │ │ ├── Resources.rc │ │ │ ├── TextureUpload.sln │ │ │ ├── TextureUpload.vcxproj │ │ │ └── TextureUpload.vcxproj.filters │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── TextureUpload.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── TextureUpload_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── TextureUpload.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── TextureUpload_Prefix.pch │ ├── TransformFeedbackIntro │ │ ├── include │ │ │ └── Resources.h │ │ ├── src │ │ │ └── TransformFeedbackIntroApp.cpp │ │ ├── vc2012 │ │ │ ├── Resources.rc │ │ │ ├── TransformFeedbackSingleObject.sln │ │ │ ├── TransformFeedbackSingleObject.vcxproj │ │ │ └── TransformFeedbackSingleObject.vcxproj.filters │ │ └── xcode │ │ │ ├── Info.plist │ │ │ ├── TransformFeedbackIntro.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── TransformFeedbackIntro_Prefix.pch │ └── usampler2D │ │ ├── assets │ │ ├── usampler_test.frag │ │ └── usampler_test.vert │ │ ├── include │ │ └── Resources.h │ │ ├── src │ │ └── usampler2DApp.cpp │ │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── usampler2D.sln │ │ ├── usampler2D.vcxproj │ │ └── usampler2D.vcxproj.filters │ │ └── xcode │ │ ├── Info.plist │ │ ├── usampler2D.xcodeproj │ │ └── project.pbxproj │ │ └── usampler2D_Prefix.pch ├── assetTest │ ├── assets │ │ └── asset1.png │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── cinder_app_icon.ico │ ├── src │ │ └── assetTestApp.cpp │ ├── vc11 │ │ ├── Resources.rc │ │ ├── assetTest.sln │ │ ├── assetTest.vcxproj │ │ └── assetTest.vcxproj.filters │ ├── xcode │ │ ├── Info.plist │ │ ├── assetTest.xcodeproj │ │ │ └── project.pbxproj │ │ └── assetTest_Prefix.pch │ └── xcode_iOS │ │ ├── Icon.png │ │ ├── assetTest-Info.plist │ │ ├── assetTest.xcodeproj │ │ └── project.pbxproj │ │ └── assetTest_Prefix.pch ├── base64Test │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── cinder_app_icon.ico │ ├── src │ │ └── base64TestApp.cpp │ ├── vc11 │ │ ├── Resources.rc │ │ ├── base64Test.sln │ │ ├── base64Test.vcxproj │ │ └── base64Test.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── base64Test.xcodeproj │ │ └── project.pbxproj │ │ └── base64Test_Prefix.pch ├── cairoTest │ ├── Resources.h │ ├── cairoTest.cpp │ ├── romedalen.png │ ├── vc8 │ │ ├── Resources.rc │ │ ├── cairoTest.sln │ │ └── cairoTest.vcproj │ └── xcode │ │ ├── Info.plist │ │ ├── cairoTest.xcodeproj │ │ └── project.pbxproj │ │ └── cairoTest_Prefix.pch ├── cmdLineArgs │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── cmdLineArgsApp.cpp │ ├── vc2022 │ │ ├── Resources.rc │ │ ├── cinder_app_icon.ico │ │ ├── cmdLineArgs.sln │ │ ├── cmdLineArgs.vcxproj │ │ └── cmdLineArgs.vcxproj.filters │ └── xcode │ │ ├── CinderApp.icns │ │ ├── Info.plist │ │ ├── cmdLineArgs.xcodeproj │ │ └── project.pbxproj │ │ └── cmdLineArgs_Prefix.pch ├── eventTest │ ├── 2019 │ │ ├── eventTest.sln │ │ ├── eventTest.vcxproj │ │ └── eventTest.vcxproj.filters │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ └── eventTest.cpp │ └── xcode │ │ ├── Info.plist │ │ ├── eventTest.xcodeproj │ │ └── project.pbxproj │ │ └── eventTest_Prefix.pch ├── iPhoneTest2d │ ├── iPhoneTest2d-Info.plist │ ├── iPhoneTest2d.xcodeproj │ │ └── project.pbxproj │ ├── iPhoneTest2d_Prefix.pch │ └── src │ │ └── iPhoneTest2dApp.cpp ├── iPhoneTestGl │ ├── iPhoneTestGl-Info.plist │ ├── iPhoneTestGl.xcodeproj │ │ └── project.pbxproj │ ├── iPhoneTestGl_Prefix.pch │ ├── include │ │ └── TestApp.h │ └── src │ │ ├── TestApp.cpp │ │ └── main.mm ├── imageProcessing │ ├── assets │ │ └── upside_down.png │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── cinder_app_icon.ico │ ├── src │ │ └── imageProcessingApp.cpp │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── imageProcessing.sln │ │ ├── imageProcessing.vcxproj │ │ └── imageProcessing.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── imageProcessing.xcodeproj │ │ └── project.pbxproj │ │ └── imageProcessing_Prefix.pch ├── iosAppTest │ ├── src │ │ └── iosAppTestApp.cpp │ └── xcode │ │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── LaunchScreen.xib │ │ ├── iosAppTest-Info.plist │ │ ├── iosAppTest.xcodeproj │ │ └── project.pbxproj │ │ └── iosAppTest_Prefix.pch ├── iosQuickTimeTest │ ├── README.txt │ ├── assets │ │ └── needs_test.mov │ ├── include │ │ └── Resources.h │ ├── src │ │ └── iosQuickTimeTestApp.cpp │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── iosQuickTimeTest.xcodeproj │ │ └── project.pbxproj │ │ └── iosQuickTimeTest_Prefix.pch ├── mathTest │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── cinder_app_icon.ico │ ├── src │ │ ├── TestMatrix22.h │ │ ├── TestMatrix33.h │ │ ├── TestMatrix44.h │ │ └── mathTestApp.cpp │ ├── vc11 │ │ ├── Resources.rc │ │ ├── mathTest.sln │ │ ├── mathTest.vcxproj │ │ └── mathTest.vcxproj.filters │ └── xcode │ │ └── mathTest.xcodeproj │ │ └── project.pbxproj ├── resizeTest │ ├── Resources.h │ ├── resizeTest.cpp │ ├── vc2015 │ │ ├── Resources.rc │ │ ├── resizeTest.sln │ │ ├── resizeTest.vcxproj │ │ └── resizeTest.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── resizeTest.xcodeproj │ │ └── project.pbxproj │ │ └── resizeTest_Prefix.pch ├── streamFileTest │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── cinder_app_icon.ico │ ├── src │ │ └── streamFileTestApp.cpp │ ├── vc11 │ │ ├── Resources.rc │ │ ├── streamFileTest.sln │ │ ├── streamFileTest.vcxproj │ │ └── streamFileTest.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── streamFileTest.xcodeproj │ │ └── project.pbxproj │ │ └── streamFileTest_Prefix.pch ├── unit │ ├── assets │ │ ├── library.json │ │ ├── shader_preprocessor │ │ │ ├── common.glsl │ │ │ ├── commonSimple.glsl │ │ │ ├── hash.glsl │ │ │ ├── shaderWithNestedIncludes.frag │ │ │ └── simple.frag │ │ ├── test_comments.json │ │ ├── test_load_write_string.txt │ │ ├── test_text_utf16.txt │ │ ├── test_text_utf32.txt │ │ ├── test_text_utf8.txt │ │ └── test_watch.txt │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── src │ │ ├── Base64Test.cpp │ │ ├── ComPtrTest.cpp │ │ ├── FileWatcherTest.cpp │ │ ├── JsonTest.cpp │ │ ├── MediaTime.cpp │ │ ├── ObjLoaderTest.cpp │ │ ├── Path2dTest.cpp │ │ ├── PolyLineTest.cpp │ │ ├── RandTest.cpp │ │ ├── ShaderPreprocessorTest.cpp │ │ ├── SystemTest.cpp │ │ ├── TestMain.cpp │ │ ├── UnicodeTest.cpp │ │ ├── Utilities.cpp │ │ ├── audio │ │ │ ├── BufferUnit.cpp │ │ │ ├── FftUnit.cpp │ │ │ ├── RingBufferUnit.cpp │ │ │ └── utils.h │ │ ├── catch.hpp │ │ └── signals │ │ │ └── SignalsTest.cpp │ ├── vc2022 │ │ ├── unit.sln │ │ ├── unit.vcxproj │ │ └── unit.vcxproj.filters │ └── xcode │ │ ├── Info.plist │ │ ├── UnitTests.xcodeproj │ │ └── project.pbxproj │ │ └── UnitTests_Prefix.pch └── windowTest │ ├── include │ └── Resources.h │ ├── proj │ └── cmake │ │ └── CMakeLists.txt │ ├── resources │ └── cinder_app_icon.ico │ ├── src │ └── windowTestApp.cpp │ ├── vc2022 │ ├── windowTest.sln │ ├── windowTest.vcxproj │ └── windowTest.vcxproj.filters │ └── xcode │ ├── Info.plist │ ├── windowTest.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── windowTest.xcscheme │ └── windowTest_Prefix.pch └── tools ├── android ├── CinderAppBuild │ ├── plugin │ │ ├── build.gradle │ │ ├── makePlugin │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── groovy │ │ │ └── org │ │ │ │ └── libcinder │ │ │ │ └── gradle │ │ │ │ └── CinderAppBuildPlugin.groovy │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── gradle-plugins │ │ │ └── cinderappbuild.properties │ └── repo │ │ └── cinderappbuild-1.0.jar ├── asprojgen │ ├── asprojgen │ └── template │ │ └── CinderApp │ │ ├── androidstudio │ │ ├── CinderApp │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ └── settings.gradle │ │ └── gradlew.bat │ │ └── src │ │ └── CinderApp.cpp └── scripts │ ├── build-boost.sh │ └── user-config.jam ├── ci ├── cmake_test.sh └── xcode_osx_test.sh ├── linux ├── rpi2 │ └── crosscompile │ │ └── crosstool_build_config ├── scripts │ ├── tk1-install-deps │ └── trusty-install-deps.sh └── sublime │ └── cinder.sublime-project ├── osx └── scripts │ └── cmake-brew-install.sh └── scripts ├── dearimgui_update.py ├── deleteline.py ├── findreplace.py ├── insertline.py ├── newMswPaths.py ├── packageRelease.py ├── prependLicense.py ├── replaceIcns.py ├── retargetVSProjects.py ├── setvc11Compiler.py ├── upgradevc11.py ├── vcprojedit.py └── walkDirs.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/README.md -------------------------------------------------------------------------------- /blocks/Box2D/cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/blocks/Box2D/cinderblock.png -------------------------------------------------------------------------------- /blocks/Box2D/cinderblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/blocks/Box2D/cinderblock.xml -------------------------------------------------------------------------------- /blocks/Cairo/cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/blocks/Cairo/cinderblock.png -------------------------------------------------------------------------------- /blocks/Cairo/cinderblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/blocks/Cairo/cinderblock.xml -------------------------------------------------------------------------------- /blocks/Cairo/src/Cairo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/blocks/Cairo/src/Cairo.cpp -------------------------------------------------------------------------------- /blocks/OSC/cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/blocks/OSC/cinderblock.png -------------------------------------------------------------------------------- /blocks/OSC/cinderblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/blocks/OSC/cinderblock.xml -------------------------------------------------------------------------------- /blocks/TUIO/cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/blocks/TUIO/cinderblock.png -------------------------------------------------------------------------------- /blocks/TUIO/cinderblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/blocks/TUIO/cinderblock.xml -------------------------------------------------------------------------------- /docs/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/Credits.html -------------------------------------------------------------------------------- /docs/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/HISTORY -------------------------------------------------------------------------------- /docs/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/doxygen/Doxyfile -------------------------------------------------------------------------------- /docs/generateDocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/generateDocs.py -------------------------------------------------------------------------------- /docs/htmlsrc/_templates/page-home-template.mustache: -------------------------------------------------------------------------------- 1 | {{{ html_content }}} -------------------------------------------------------------------------------- /docs/htmlsrc/ci_tag_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/htmlsrc/ci_tag_test.html -------------------------------------------------------------------------------- /docs/htmlsrc/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/htmlsrc/classes.html -------------------------------------------------------------------------------- /docs/htmlsrc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/htmlsrc/index.html -------------------------------------------------------------------------------- /docs/htmlsrc/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/htmlsrc/namespaces.html -------------------------------------------------------------------------------- /docs/htmlsrc/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/htmlsrc/search.html -------------------------------------------------------------------------------- /docs/htmlsrc/search_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/htmlsrc/search_test.html -------------------------------------------------------------------------------- /docs/libs/__init__.py: -------------------------------------------------------------------------------- 1 | # from bs4 import BeautifulSoup -------------------------------------------------------------------------------- /docs/libs/bs4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/bs4/__init__.py -------------------------------------------------------------------------------- /docs/libs/bs4/dammit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/bs4/dammit.py -------------------------------------------------------------------------------- /docs/libs/bs4/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/bs4/diagnose.py -------------------------------------------------------------------------------- /docs/libs/bs4/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/bs4/element.py -------------------------------------------------------------------------------- /docs/libs/bs4/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/bs4/testing.py -------------------------------------------------------------------------------- /docs/libs/bs4/tests/__init__.py: -------------------------------------------------------------------------------- 1 | "The beautifulsoup tests." 2 | -------------------------------------------------------------------------------- /docs/libs/markdown/odict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/markdown/odict.py -------------------------------------------------------------------------------- /docs/libs/markdown/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/markdown/util.py -------------------------------------------------------------------------------- /docs/libs/pystache/commands/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | TODO: add a docstring. 3 | 4 | """ 5 | -------------------------------------------------------------------------------- /docs/libs/pystache/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/pystache/common.py -------------------------------------------------------------------------------- /docs/libs/pystache/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/pystache/context.py -------------------------------------------------------------------------------- /docs/libs/pystache/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/pystache/init.py -------------------------------------------------------------------------------- /docs/libs/pystache/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/pystache/loader.py -------------------------------------------------------------------------------- /docs/libs/pystache/locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/pystache/locator.py -------------------------------------------------------------------------------- /docs/libs/pystache/parsed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/pystache/parsed.py -------------------------------------------------------------------------------- /docs/libs/pystache/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/libs/pystache/parser.py -------------------------------------------------------------------------------- /docs/libs/pystache/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | TODO: add a docstring. 3 | 4 | """ 5 | -------------------------------------------------------------------------------- /docs/libs/pystache/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | TODO: add a docstring. 3 | 4 | """ 5 | -------------------------------------------------------------------------------- /docs/libs/pystache/tests/data/ascii.mustache: -------------------------------------------------------------------------------- 1 | ascii: abc -------------------------------------------------------------------------------- /docs/libs/pystache/tests/data/duplicate.mustache: -------------------------------------------------------------------------------- 1 | This file is used to test locate_path()'s search order. -------------------------------------------------------------------------------- /docs/libs/pystache/tests/data/locator/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | TODO: add a docstring. 3 | 4 | """ 5 | -------------------------------------------------------------------------------- /docs/libs/pystache/tests/data/locator/template.txt: -------------------------------------------------------------------------------- 1 | Test template file 2 | -------------------------------------------------------------------------------- /docs/libs/pystache/tests/data/non_ascii.mustache: -------------------------------------------------------------------------------- 1 | non-ascii: é -------------------------------------------------------------------------------- /docs/libs/pystache/tests/data/sample_view.mustache: -------------------------------------------------------------------------------- 1 | ascii: abc -------------------------------------------------------------------------------- /docs/libs/pystache/tests/data/say_hello.mustache: -------------------------------------------------------------------------------- 1 | Hello, {{to}} -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | TODO: add a docstring. 3 | 4 | """ 5 | -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/escaped.mustache: -------------------------------------------------------------------------------- 1 |

{{title}}

-------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/inner_partial.mustache: -------------------------------------------------------------------------------- 1 | Again, {{title}}! -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/inner_partial.txt: -------------------------------------------------------------------------------- 1 | ## Again, {{title}}! ## -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/looping_partial.mustache: -------------------------------------------------------------------------------- 1 | Looping partial {{item}}! -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/partial_in_partial.mustache: -------------------------------------------------------------------------------- 1 | {{>simple}} -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/say_hello.mustache: -------------------------------------------------------------------------------- 1 | Hello, {{to}}! -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/simple.mustache: -------------------------------------------------------------------------------- 1 | Hi {{thing}}!{{blank}} -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/tagless.mustache: -------------------------------------------------------------------------------- 1 | No tags... -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/template_partial.mustache: -------------------------------------------------------------------------------- 1 |

{{title}}

2 | {{>inner_partial}} -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/unescaped.mustache: -------------------------------------------------------------------------------- 1 |

{{{title}}}

-------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/unicode_input.mustache: -------------------------------------------------------------------------------- 1 | abcdé -------------------------------------------------------------------------------- /docs/libs/pystache/tests/examples/unicode_output.mustache: -------------------------------------------------------------------------------- 1 |

Name: {{name}}

-------------------------------------------------------------------------------- /docs/md2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/md2html.py -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/stylesrc/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/stylesrc/gulpfile.js -------------------------------------------------------------------------------- /docs/stylesrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/stylesrc/package.json -------------------------------------------------------------------------------- /docs/template_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/docs/template_test.py -------------------------------------------------------------------------------- /include/ANGLE/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ANGLE/EGL/egl.h -------------------------------------------------------------------------------- /include/ANGLE/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ANGLE/EGL/eglext.h -------------------------------------------------------------------------------- /include/ANGLE/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ANGLE/GLES2/gl2.h -------------------------------------------------------------------------------- /include/ANGLE/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ANGLE/GLES2/gl2ext.h -------------------------------------------------------------------------------- /include/ANGLE/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ANGLE/GLES3/gl3.h -------------------------------------------------------------------------------- /include/ANGLE/GLES3/gl3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ANGLE/GLES3/gl3ext.h -------------------------------------------------------------------------------- /include/ANGLE/angle_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ANGLE/angle_gl.h -------------------------------------------------------------------------------- /include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /include/asio/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/append.hpp -------------------------------------------------------------------------------- /include/asio/as_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/as_tuple.hpp -------------------------------------------------------------------------------- /include/asio/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/asio.hpp -------------------------------------------------------------------------------- /include/asio/associator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/associator.hpp -------------------------------------------------------------------------------- /include/asio/async_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/async_result.hpp -------------------------------------------------------------------------------- /include/asio/awaitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/awaitable.hpp -------------------------------------------------------------------------------- /include/asio/basic_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/basic_file.hpp -------------------------------------------------------------------------------- /include/asio/basic_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/basic_socket.hpp -------------------------------------------------------------------------------- /include/asio/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/buffer.hpp -------------------------------------------------------------------------------- /include/asio/cancel_after.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/cancel_after.hpp -------------------------------------------------------------------------------- /include/asio/cancel_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/cancel_at.hpp -------------------------------------------------------------------------------- /include/asio/co_composed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/co_composed.hpp -------------------------------------------------------------------------------- /include/asio/co_spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/co_spawn.hpp -------------------------------------------------------------------------------- /include/asio/compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/compose.hpp -------------------------------------------------------------------------------- /include/asio/composed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/composed.hpp -------------------------------------------------------------------------------- /include/asio/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/config.hpp -------------------------------------------------------------------------------- /include/asio/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/connect.hpp -------------------------------------------------------------------------------- /include/asio/connect_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/connect_pipe.hpp -------------------------------------------------------------------------------- /include/asio/consign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/consign.hpp -------------------------------------------------------------------------------- /include/asio/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/coroutine.hpp -------------------------------------------------------------------------------- /include/asio/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/defer.hpp -------------------------------------------------------------------------------- /include/asio/deferred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/deferred.hpp -------------------------------------------------------------------------------- /include/asio/detached.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/detached.hpp -------------------------------------------------------------------------------- /include/asio/detail/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/detail/array.hpp -------------------------------------------------------------------------------- /include/asio/detail/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/detail/event.hpp -------------------------------------------------------------------------------- /include/asio/detail/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/detail/mutex.hpp -------------------------------------------------------------------------------- /include/asio/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/dispatch.hpp -------------------------------------------------------------------------------- /include/asio/disposition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/disposition.hpp -------------------------------------------------------------------------------- /include/asio/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/error.hpp -------------------------------------------------------------------------------- /include/asio/error_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/error_code.hpp -------------------------------------------------------------------------------- /include/asio/execution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/execution.hpp -------------------------------------------------------------------------------- /include/asio/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/executor.hpp -------------------------------------------------------------------------------- /include/asio/file_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/file_base.hpp -------------------------------------------------------------------------------- /include/asio/immediate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/immediate.hpp -------------------------------------------------------------------------------- /include/asio/impl/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/append.hpp -------------------------------------------------------------------------------- /include/asio/impl/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/config.hpp -------------------------------------------------------------------------------- /include/asio/impl/config.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/config.ipp -------------------------------------------------------------------------------- /include/asio/impl/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/connect.hpp -------------------------------------------------------------------------------- /include/asio/impl/consign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/consign.hpp -------------------------------------------------------------------------------- /include/asio/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/error.ipp -------------------------------------------------------------------------------- /include/asio/impl/prepend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/prepend.hpp -------------------------------------------------------------------------------- /include/asio/impl/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/read.hpp -------------------------------------------------------------------------------- /include/asio/impl/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/read_at.hpp -------------------------------------------------------------------------------- /include/asio/impl/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/spawn.hpp -------------------------------------------------------------------------------- /include/asio/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/src.hpp -------------------------------------------------------------------------------- /include/asio/impl/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/impl/write.hpp -------------------------------------------------------------------------------- /include/asio/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/io_context.hpp -------------------------------------------------------------------------------- /include/asio/ip/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ip/address.hpp -------------------------------------------------------------------------------- /include/asio/ip/host_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ip/host_name.hpp -------------------------------------------------------------------------------- /include/asio/ip/icmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ip/icmp.hpp -------------------------------------------------------------------------------- /include/asio/ip/multicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ip/multicast.hpp -------------------------------------------------------------------------------- /include/asio/ip/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ip/tcp.hpp -------------------------------------------------------------------------------- /include/asio/ip/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ip/udp.hpp -------------------------------------------------------------------------------- /include/asio/ip/unicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ip/unicast.hpp -------------------------------------------------------------------------------- /include/asio/ip/v6_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ip/v6_only.hpp -------------------------------------------------------------------------------- /include/asio/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/is_executor.hpp -------------------------------------------------------------------------------- /include/asio/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/placeholders.hpp -------------------------------------------------------------------------------- /include/asio/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/post.hpp -------------------------------------------------------------------------------- /include/asio/prefer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/prefer.hpp -------------------------------------------------------------------------------- /include/asio/prepend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/prepend.hpp -------------------------------------------------------------------------------- /include/asio/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/query.hpp -------------------------------------------------------------------------------- /include/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/read.hpp -------------------------------------------------------------------------------- /include/asio/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/read_at.hpp -------------------------------------------------------------------------------- /include/asio/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/read_until.hpp -------------------------------------------------------------------------------- /include/asio/require.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/require.hpp -------------------------------------------------------------------------------- /include/asio/serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/serial_port.hpp -------------------------------------------------------------------------------- /include/asio/signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/signal_set.hpp -------------------------------------------------------------------------------- /include/asio/socket_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/socket_base.hpp -------------------------------------------------------------------------------- /include/asio/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/spawn.hpp -------------------------------------------------------------------------------- /include/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ssl.hpp -------------------------------------------------------------------------------- /include/asio/ssl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ssl/context.hpp -------------------------------------------------------------------------------- /include/asio/ssl/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ssl/error.hpp -------------------------------------------------------------------------------- /include/asio/ssl/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ssl/impl/src.hpp -------------------------------------------------------------------------------- /include/asio/ssl/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ssl/stream.hpp -------------------------------------------------------------------------------- /include/asio/steady_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/steady_timer.hpp -------------------------------------------------------------------------------- /include/asio/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/strand.hpp -------------------------------------------------------------------------------- /include/asio/stream_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/stream_file.hpp -------------------------------------------------------------------------------- /include/asio/streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/streambuf.hpp -------------------------------------------------------------------------------- /include/asio/system_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/system_error.hpp -------------------------------------------------------------------------------- /include/asio/system_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/system_timer.hpp -------------------------------------------------------------------------------- /include/asio/this_coro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/this_coro.hpp -------------------------------------------------------------------------------- /include/asio/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/thread.hpp -------------------------------------------------------------------------------- /include/asio/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/thread_pool.hpp -------------------------------------------------------------------------------- /include/asio/time_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/time_traits.hpp -------------------------------------------------------------------------------- /include/asio/ts/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ts/buffer.hpp -------------------------------------------------------------------------------- /include/asio/ts/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ts/executor.hpp -------------------------------------------------------------------------------- /include/asio/ts/internet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ts/internet.hpp -------------------------------------------------------------------------------- /include/asio/ts/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ts/net.hpp -------------------------------------------------------------------------------- /include/asio/ts/netfwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ts/netfwd.hpp -------------------------------------------------------------------------------- /include/asio/ts/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ts/socket.hpp -------------------------------------------------------------------------------- /include/asio/ts/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/ts/timer.hpp -------------------------------------------------------------------------------- /include/asio/unyield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/unyield.hpp -------------------------------------------------------------------------------- /include/asio/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/use_future.hpp -------------------------------------------------------------------------------- /include/asio/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/version.hpp -------------------------------------------------------------------------------- /include/asio/wait_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/wait_traits.hpp -------------------------------------------------------------------------------- /include/asio/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/write.hpp -------------------------------------------------------------------------------- /include/asio/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/write_at.hpp -------------------------------------------------------------------------------- /include/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/asio/yield.hpp -------------------------------------------------------------------------------- /include/cinder/Arcball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Arcball.h -------------------------------------------------------------------------------- /include/cinder/Area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Area.h -------------------------------------------------------------------------------- /include/cinder/BSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/BSpline.h -------------------------------------------------------------------------------- /include/cinder/BSplineFit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/BSplineFit.h -------------------------------------------------------------------------------- /include/cinder/BandedMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/BandedMatrix.h -------------------------------------------------------------------------------- /include/cinder/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Base64.h -------------------------------------------------------------------------------- /include/cinder/Breakpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Breakpoint.h -------------------------------------------------------------------------------- /include/cinder/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Buffer.h -------------------------------------------------------------------------------- /include/cinder/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Camera.h -------------------------------------------------------------------------------- /include/cinder/CameraUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/CameraUi.h -------------------------------------------------------------------------------- /include/cinder/CanvasUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/CanvasUi.h -------------------------------------------------------------------------------- /include/cinder/Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Capture.h -------------------------------------------------------------------------------- /include/cinder/ChanTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ChanTraits.h -------------------------------------------------------------------------------- /include/cinder/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Channel.h -------------------------------------------------------------------------------- /include/cinder/Cinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Cinder.h -------------------------------------------------------------------------------- /include/cinder/CinderAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/CinderAssert.h -------------------------------------------------------------------------------- /include/cinder/CinderFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/CinderFwd.h -------------------------------------------------------------------------------- /include/cinder/CinderGlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/CinderGlm.h -------------------------------------------------------------------------------- /include/cinder/CinderImGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/CinderImGui.h -------------------------------------------------------------------------------- /include/cinder/CinderMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/CinderMath.h -------------------------------------------------------------------------------- /include/cinder/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Clipboard.h -------------------------------------------------------------------------------- /include/cinder/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Color.h -------------------------------------------------------------------------------- /include/cinder/DataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/DataSource.h -------------------------------------------------------------------------------- /include/cinder/DataTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/DataTarget.h -------------------------------------------------------------------------------- /include/cinder/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Display.h -------------------------------------------------------------------------------- /include/cinder/Easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Easing.h -------------------------------------------------------------------------------- /include/cinder/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Exception.h -------------------------------------------------------------------------------- /include/cinder/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Export.h -------------------------------------------------------------------------------- /include/cinder/FileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/FileWatcher.h -------------------------------------------------------------------------------- /include/cinder/Filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Filesystem.h -------------------------------------------------------------------------------- /include/cinder/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Filter.h -------------------------------------------------------------------------------- /include/cinder/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Font.h -------------------------------------------------------------------------------- /include/cinder/Frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Frustum.h -------------------------------------------------------------------------------- /include/cinder/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Function.h -------------------------------------------------------------------------------- /include/cinder/GeomIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/GeomIo.h -------------------------------------------------------------------------------- /include/cinder/ImageIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ImageIo.h -------------------------------------------------------------------------------- /include/cinder/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Json.h -------------------------------------------------------------------------------- /include/cinder/JsonTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/JsonTree.h -------------------------------------------------------------------------------- /include/cinder/KdTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/KdTree.h -------------------------------------------------------------------------------- /include/cinder/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Log.h -------------------------------------------------------------------------------- /include/cinder/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Matrix.h -------------------------------------------------------------------------------- /include/cinder/Matrix22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Matrix22.h -------------------------------------------------------------------------------- /include/cinder/Matrix33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Matrix33.h -------------------------------------------------------------------------------- /include/cinder/Matrix44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Matrix44.h -------------------------------------------------------------------------------- /include/cinder/MediaTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/MediaTime.h -------------------------------------------------------------------------------- /include/cinder/Noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Noncopyable.h -------------------------------------------------------------------------------- /include/cinder/ObjLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ObjLoader.h -------------------------------------------------------------------------------- /include/cinder/Path2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Path2d.h -------------------------------------------------------------------------------- /include/cinder/Perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Perlin.h -------------------------------------------------------------------------------- /include/cinder/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Plane.h -------------------------------------------------------------------------------- /include/cinder/PolyLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/PolyLine.h -------------------------------------------------------------------------------- /include/cinder/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Quaternion.h -------------------------------------------------------------------------------- /include/cinder/Rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Rand.h -------------------------------------------------------------------------------- /include/cinder/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Ray.h -------------------------------------------------------------------------------- /include/cinder/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Rect.h -------------------------------------------------------------------------------- /include/cinder/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Serial.h -------------------------------------------------------------------------------- /include/cinder/Shape2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Shape2d.h -------------------------------------------------------------------------------- /include/cinder/Signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Signals.h -------------------------------------------------------------------------------- /include/cinder/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Sphere.h -------------------------------------------------------------------------------- /include/cinder/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Stream.h -------------------------------------------------------------------------------- /include/cinder/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Surface.h -------------------------------------------------------------------------------- /include/cinder/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/System.h -------------------------------------------------------------------------------- /include/cinder/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Text.h -------------------------------------------------------------------------------- /include/cinder/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Thread.h -------------------------------------------------------------------------------- /include/cinder/Timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Timeline.h -------------------------------------------------------------------------------- /include/cinder/TimelineItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/TimelineItem.h -------------------------------------------------------------------------------- /include/cinder/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Timer.h -------------------------------------------------------------------------------- /include/cinder/TriMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/TriMesh.h -------------------------------------------------------------------------------- /include/cinder/Triangulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Triangulate.h -------------------------------------------------------------------------------- /include/cinder/Tween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Tween.h -------------------------------------------------------------------------------- /include/cinder/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Unicode.h -------------------------------------------------------------------------------- /include/cinder/Url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Url.h -------------------------------------------------------------------------------- /include/cinder/UrlImplCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/UrlImplCocoa.h -------------------------------------------------------------------------------- /include/cinder/UrlImplCurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/UrlImplCurl.h -------------------------------------------------------------------------------- /include/cinder/UrlImplJni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/UrlImplJni.h -------------------------------------------------------------------------------- /include/cinder/UrlImplNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/UrlImplNull.h -------------------------------------------------------------------------------- /include/cinder/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Utilities.h -------------------------------------------------------------------------------- /include/cinder/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Vector.h -------------------------------------------------------------------------------- /include/cinder/Xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/Xml.h -------------------------------------------------------------------------------- /include/cinder/app/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/app/App.h -------------------------------------------------------------------------------- /include/cinder/app/AppBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/app/AppBase.h -------------------------------------------------------------------------------- /include/cinder/app/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/app/Event.h -------------------------------------------------------------------------------- /include/cinder/app/KeyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/app/KeyEvent.h -------------------------------------------------------------------------------- /include/cinder/app/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/app/Platform.h -------------------------------------------------------------------------------- /include/cinder/app/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/app/Renderer.h -------------------------------------------------------------------------------- /include/cinder/app/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/app/Window.h -------------------------------------------------------------------------------- /include/cinder/audio/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/audio/Buffer.h -------------------------------------------------------------------------------- /include/cinder/audio/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/audio/Device.h -------------------------------------------------------------------------------- /include/cinder/audio/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/audio/Node.h -------------------------------------------------------------------------------- /include/cinder/audio/Param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/audio/Param.h -------------------------------------------------------------------------------- /include/cinder/audio/Source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/audio/Source.h -------------------------------------------------------------------------------- /include/cinder/audio/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/audio/Target.h -------------------------------------------------------------------------------- /include/cinder/audio/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/audio/Voice.h -------------------------------------------------------------------------------- /include/cinder/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/audio/audio.h -------------------------------------------------------------------------------- /include/cinder/gl/Batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Batch.h -------------------------------------------------------------------------------- /include/cinder/gl/BufferObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/BufferObj.h -------------------------------------------------------------------------------- /include/cinder/gl/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Context.h -------------------------------------------------------------------------------- /include/cinder/gl/Fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Fbo.h -------------------------------------------------------------------------------- /include/cinder/gl/GlslProg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/GlslProg.h -------------------------------------------------------------------------------- /include/cinder/gl/Pbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Pbo.h -------------------------------------------------------------------------------- /include/cinder/gl/Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Query.h -------------------------------------------------------------------------------- /include/cinder/gl/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Sampler.h -------------------------------------------------------------------------------- /include/cinder/gl/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Shader.h -------------------------------------------------------------------------------- /include/cinder/gl/Ssbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Ssbo.h -------------------------------------------------------------------------------- /include/cinder/gl/Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Sync.h -------------------------------------------------------------------------------- /include/cinder/gl/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Texture.h -------------------------------------------------------------------------------- /include/cinder/gl/Ubo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Ubo.h -------------------------------------------------------------------------------- /include/cinder/gl/Vao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Vao.h -------------------------------------------------------------------------------- /include/cinder/gl/Vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/Vbo.h -------------------------------------------------------------------------------- /include/cinder/gl/VboMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/VboMesh.h -------------------------------------------------------------------------------- /include/cinder/gl/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/draw.h -------------------------------------------------------------------------------- /include/cinder/gl/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/gl.h -------------------------------------------------------------------------------- /include/cinder/gl/scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/scoped.h -------------------------------------------------------------------------------- /include/cinder/gl/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/gl/wrapper.h -------------------------------------------------------------------------------- /include/cinder/ip/Blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ip/Blend.h -------------------------------------------------------------------------------- /include/cinder/ip/Blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ip/Blur.h -------------------------------------------------------------------------------- /include/cinder/ip/Fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ip/Fill.h -------------------------------------------------------------------------------- /include/cinder/ip/Flip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ip/Flip.h -------------------------------------------------------------------------------- /include/cinder/ip/Hdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ip/Hdr.h -------------------------------------------------------------------------------- /include/cinder/ip/Resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ip/Resize.h -------------------------------------------------------------------------------- /include/cinder/ip/Trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/ip/Trim.h -------------------------------------------------------------------------------- /include/cinder/svg/Svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/svg/Svg.h -------------------------------------------------------------------------------- /include/cinder/svg/SvgGl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/cinder/svg/SvgGl.h -------------------------------------------------------------------------------- /include/circular/circular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/circular/circular.h -------------------------------------------------------------------------------- /include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/freetype.h -------------------------------------------------------------------------------- /include/freetype/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ft2build.h -------------------------------------------------------------------------------- /include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftcache.h -------------------------------------------------------------------------------- /include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftcid.h -------------------------------------------------------------------------------- /include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/fterrors.h -------------------------------------------------------------------------------- /include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftimage.h -------------------------------------------------------------------------------- /include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftlist.h -------------------------------------------------------------------------------- /include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftmac.h -------------------------------------------------------------------------------- /include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftmm.h -------------------------------------------------------------------------------- /include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftotval.h -------------------------------------------------------------------------------- /include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftparams.h -------------------------------------------------------------------------------- /include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftrender.h -------------------------------------------------------------------------------- /include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/fttypes.h -------------------------------------------------------------------------------- /include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/t1tables.h -------------------------------------------------------------------------------- /include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/tttables.h -------------------------------------------------------------------------------- /include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/freetype/tttags.h -------------------------------------------------------------------------------- /include/ghc/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ghc/filesystem.hpp -------------------------------------------------------------------------------- /include/ghc/fs_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ghc/fs_fwd.hpp -------------------------------------------------------------------------------- /include/ghc/fs_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/ghc/fs_impl.hpp -------------------------------------------------------------------------------- /include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glad/glad.h -------------------------------------------------------------------------------- /include/glad/glad_es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glad/glad_es.h -------------------------------------------------------------------------------- /include/glad/glad_glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glad/glad_glx.h -------------------------------------------------------------------------------- /include/glad/glad_wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glad/glad_wgl.h -------------------------------------------------------------------------------- /include/glfw/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glfw/glfw3.h -------------------------------------------------------------------------------- /include/glfw/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glfw/glfw3native.h -------------------------------------------------------------------------------- /include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/common.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/exponential.hpp -------------------------------------------------------------------------------- /include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/ext.hpp -------------------------------------------------------------------------------- /include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/fwd.hpp -------------------------------------------------------------------------------- /include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/geometric.hpp -------------------------------------------------------------------------------- /include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/glm.hpp -------------------------------------------------------------------------------- /include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/integer.hpp -------------------------------------------------------------------------------- /include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/matrix.hpp -------------------------------------------------------------------------------- /include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/packing.hpp -------------------------------------------------------------------------------- /include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/simd/common.h -------------------------------------------------------------------------------- /include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/simd/integer.h -------------------------------------------------------------------------------- /include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/simd/packing.h -------------------------------------------------------------------------------- /include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/simd/platform.h -------------------------------------------------------------------------------- /include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/vec2.hpp -------------------------------------------------------------------------------- /include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/vec3.hpp -------------------------------------------------------------------------------- /include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/glm/vec4.hpp -------------------------------------------------------------------------------- /include/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/imgui/LICENSE.txt -------------------------------------------------------------------------------- /include/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/imgui/imconfig.h -------------------------------------------------------------------------------- /include/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/imgui/imgui.h -------------------------------------------------------------------------------- /include/jsoncpp/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/jsoncpp/json.h -------------------------------------------------------------------------------- /include/msw/png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/msw/png/png.h -------------------------------------------------------------------------------- /include/msw/png/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/msw/png/pngconf.h -------------------------------------------------------------------------------- /include/msw/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/msw/zlib/zconf.h -------------------------------------------------------------------------------- /include/msw/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/msw/zlib/zlib.h -------------------------------------------------------------------------------- /include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /include/oggvorbis/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/oggvorbis/ogg/ogg.h -------------------------------------------------------------------------------- /include/qoi/qoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/qoi/qoi.h -------------------------------------------------------------------------------- /include/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/stb/stb_image.h -------------------------------------------------------------------------------- /include/tinyexr/tinyexr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/tinyexr/tinyexr.h -------------------------------------------------------------------------------- /include/utf8cpp/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/utf8cpp/checked.h -------------------------------------------------------------------------------- /include/utf8cpp/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/utf8cpp/core.h -------------------------------------------------------------------------------- /include/utf8cpp/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/include/utf8cpp/unchecked.h -------------------------------------------------------------------------------- /lib/msw/x64/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/lib/msw/x64/libEGL.dll -------------------------------------------------------------------------------- /lib/msw/x64/libEGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/lib/msw/x64/libEGL.lib -------------------------------------------------------------------------------- /lib/msw/x64/libGLESv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/lib/msw/x64/libGLESv2.dll -------------------------------------------------------------------------------- /lib/msw/x64/libGLESv2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/lib/msw/x64/libGLESv2.lib -------------------------------------------------------------------------------- /lib/msw/x64/libpng.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/lib/msw/x64/libpng.lib -------------------------------------------------------------------------------- /proj/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/android/CMakeLists.txt -------------------------------------------------------------------------------- /proj/android/cbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/android/cbuilder -------------------------------------------------------------------------------- /proj/android/es2-fullbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/android/es2-fullbuild -------------------------------------------------------------------------------- /proj/android/fullbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/android/fullbuild -------------------------------------------------------------------------------- /proj/android/fullbuild-mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/android/fullbuild-mips -------------------------------------------------------------------------------- /proj/android/fullbuild-x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/android/fullbuild-x86 -------------------------------------------------------------------------------- /proj/android/libcinder_java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':libcinder', ':app' 2 | -------------------------------------------------------------------------------- /proj/cmake/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/cmake/configure.cmake -------------------------------------------------------------------------------- /proj/cmake/utilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/cmake/utilities.cmake -------------------------------------------------------------------------------- /proj/vc2022/cinder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/vc2022/cinder.sln -------------------------------------------------------------------------------- /proj/vc2022/cinder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/vc2022/cinder.vcxproj -------------------------------------------------------------------------------- /proj/xcode/fullbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/proj/xcode/fullbuild.sh -------------------------------------------------------------------------------- /samples/ArcballDemo/androidstudio/ArcballDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/BasicApp/androidstudio/BasicApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/CaptureBasic/androidstudio/CaptureBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/Geometry/androidstudio/Geometry/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/MultiTouchBasic/androidstudio/MultiTouchBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/QuickTimeBasic/androidstudio/QuickTimeBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/TextBox/androidstudio/TextBox/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/TextTest/androidstudio/TextTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/TextureFont/androidstudio/TextureFont/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_audio/BufferPlayer/androidstudio/BufferPlayer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_audio/InputAnalyzer/androidstudio/InputAnalyzer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_audio/NodeAdvanced/androidstudio/NodeAdvanced/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_audio/NodeBasic/androidstudio/NodeBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/Cube/androidstudio/Cube/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/CubeMapping/androidstudio/CubeMapping/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/DeferredShading/androidstudio/DeferredShading/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/DynamicCubeMapping/androidstudio/DynamicCubeMapping/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/FboBasic/androidstudio/FBOBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/HighDynamicRange/androidstudio/HighDynamicRange/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/ImmediateMode/androidstudio/ImmediateMode/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/InstancedTeapots/androidstudio/InstancedTeapots/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/MipMap/androidstudio/MipMap/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/MotionBlurFbo/androidstudio/MotionBlurFbo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/NormalMapping/androidstudio/NormalMapping/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/NormalMappingBasic/androidstudio/NormalMappingBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/ObjLoader/androidstudio/ObjLoader/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/ParticleSphereCPU/androidstudio/ParticleSphereCPU/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/ParticleSphereGPU/androidstudio/ParticleSphereGPU/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/ParticlesBasic/androidstudio/ParticlesBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/ShadowMapping/androidstudio/ShadowMapping/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/ShadowMappingBasic/androidstudio/ShadowMappingBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/TessellationBasic/androidstudio/TessellationBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_opengl/TessellationBezier/androidstudio/TessellationBezier/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/_timeline/BasicTween/include/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /samples/data/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/CinderApp.icns -------------------------------------------------------------------------------- /samples/data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/LICENSE -------------------------------------------------------------------------------- /samples/data/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/earth.jpg -------------------------------------------------------------------------------- /samples/data/photo_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/photo_1.jpg -------------------------------------------------------------------------------- /samples/data/photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/photo_2.jpg -------------------------------------------------------------------------------- /samples/data/photo_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/photo_3.jpg -------------------------------------------------------------------------------- /samples/data/photo_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/photo_4.jpg -------------------------------------------------------------------------------- /samples/data/photo_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/photo_5.jpg -------------------------------------------------------------------------------- /samples/data/photo_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/photo_6.jpg -------------------------------------------------------------------------------- /samples/data/photo_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/photo_7.jpg -------------------------------------------------------------------------------- /samples/data/photo_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/photo_8.jpg -------------------------------------------------------------------------------- /samples/data/rg_grad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/samples/data/rg_grad.png -------------------------------------------------------------------------------- /src/cinder/Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Area.cpp -------------------------------------------------------------------------------- /src/cinder/BSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/BSpline.cpp -------------------------------------------------------------------------------- /src/cinder/BSplineFit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/BSplineFit.cpp -------------------------------------------------------------------------------- /src/cinder/BandedMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/BandedMatrix.cpp -------------------------------------------------------------------------------- /src/cinder/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Base64.cpp -------------------------------------------------------------------------------- /src/cinder/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Buffer.cpp -------------------------------------------------------------------------------- /src/cinder/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Camera.cpp -------------------------------------------------------------------------------- /src/cinder/CameraUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/CameraUi.cpp -------------------------------------------------------------------------------- /src/cinder/CanvasUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/CanvasUi.cpp -------------------------------------------------------------------------------- /src/cinder/Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Capture.cpp -------------------------------------------------------------------------------- /src/cinder/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Channel.cpp -------------------------------------------------------------------------------- /src/cinder/CinderAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/CinderAssert.cpp -------------------------------------------------------------------------------- /src/cinder/CinderImGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/CinderImGui.cpp -------------------------------------------------------------------------------- /src/cinder/CinderMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/CinderMath.cpp -------------------------------------------------------------------------------- /src/cinder/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Clipboard.cpp -------------------------------------------------------------------------------- /src/cinder/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Color.cpp -------------------------------------------------------------------------------- /src/cinder/DataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/DataSource.cpp -------------------------------------------------------------------------------- /src/cinder/DataTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/DataTarget.cpp -------------------------------------------------------------------------------- /src/cinder/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Display.cpp -------------------------------------------------------------------------------- /src/cinder/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Exception.cpp -------------------------------------------------------------------------------- /src/cinder/FileWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/FileWatcher.cpp -------------------------------------------------------------------------------- /src/cinder/Filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Filesystem.cpp -------------------------------------------------------------------------------- /src/cinder/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Font.cpp -------------------------------------------------------------------------------- /src/cinder/Frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Frustum.cpp -------------------------------------------------------------------------------- /src/cinder/GeomIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/GeomIo.cpp -------------------------------------------------------------------------------- /src/cinder/ImageIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ImageIo.cpp -------------------------------------------------------------------------------- /src/cinder/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Json.cpp -------------------------------------------------------------------------------- /src/cinder/JsonTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/JsonTree.cpp -------------------------------------------------------------------------------- /src/cinder/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Log.cpp -------------------------------------------------------------------------------- /src/cinder/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Matrix.cpp -------------------------------------------------------------------------------- /src/cinder/MediaTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/MediaTime.cpp -------------------------------------------------------------------------------- /src/cinder/ObjLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ObjLoader.cpp -------------------------------------------------------------------------------- /src/cinder/Path2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Path2d.cpp -------------------------------------------------------------------------------- /src/cinder/Perlin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Perlin.cpp -------------------------------------------------------------------------------- /src/cinder/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Plane.cpp -------------------------------------------------------------------------------- /src/cinder/PolyLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/PolyLine.cpp -------------------------------------------------------------------------------- /src/cinder/Rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Rand.cpp -------------------------------------------------------------------------------- /src/cinder/Ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Ray.cpp -------------------------------------------------------------------------------- /src/cinder/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Rect.cpp -------------------------------------------------------------------------------- /src/cinder/Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Serial.cpp -------------------------------------------------------------------------------- /src/cinder/Shape2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Shape2d.cpp -------------------------------------------------------------------------------- /src/cinder/Signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Signals.cpp -------------------------------------------------------------------------------- /src/cinder/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Sphere.cpp -------------------------------------------------------------------------------- /src/cinder/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Stream.cpp -------------------------------------------------------------------------------- /src/cinder/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Surface.cpp -------------------------------------------------------------------------------- /src/cinder/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/System.cpp -------------------------------------------------------------------------------- /src/cinder/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Text.cpp -------------------------------------------------------------------------------- /src/cinder/Timeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Timeline.cpp -------------------------------------------------------------------------------- /src/cinder/TimelineItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/TimelineItem.cpp -------------------------------------------------------------------------------- /src/cinder/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Timer.cpp -------------------------------------------------------------------------------- /src/cinder/TriMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/TriMesh.cpp -------------------------------------------------------------------------------- /src/cinder/Triangulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Triangulate.cpp -------------------------------------------------------------------------------- /src/cinder/Tween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Tween.cpp -------------------------------------------------------------------------------- /src/cinder/Unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Unicode.cpp -------------------------------------------------------------------------------- /src/cinder/Url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Url.cpp -------------------------------------------------------------------------------- /src/cinder/UrlImplCocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/UrlImplCocoa.mm -------------------------------------------------------------------------------- /src/cinder/UrlImplCurl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/UrlImplCurl.cpp -------------------------------------------------------------------------------- /src/cinder/UrlImplJni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/UrlImplJni.cpp -------------------------------------------------------------------------------- /src/cinder/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Utilities.cpp -------------------------------------------------------------------------------- /src/cinder/Xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/Xml.cpp -------------------------------------------------------------------------------- /src/cinder/app/AppBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/app/AppBase.cpp -------------------------------------------------------------------------------- /src/cinder/app/KeyEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/app/KeyEvent.cpp -------------------------------------------------------------------------------- /src/cinder/app/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/app/Platform.cpp -------------------------------------------------------------------------------- /src/cinder/app/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/app/Renderer.cpp -------------------------------------------------------------------------------- /src/cinder/app/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/app/Window.cpp -------------------------------------------------------------------------------- /src/cinder/audio/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/audio/Device.cpp -------------------------------------------------------------------------------- /src/cinder/audio/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/audio/Node.cpp -------------------------------------------------------------------------------- /src/cinder/audio/Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/audio/Param.cpp -------------------------------------------------------------------------------- /src/cinder/audio/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/audio/Source.cpp -------------------------------------------------------------------------------- /src/cinder/audio/Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/audio/Target.cpp -------------------------------------------------------------------------------- /src/cinder/audio/Voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/audio/Voice.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Batch.cpp -------------------------------------------------------------------------------- /src/cinder/gl/BufferObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/BufferObj.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Context.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Fbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Fbo.cpp -------------------------------------------------------------------------------- /src/cinder/gl/GlslProg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/GlslProg.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Pbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Pbo.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Query.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Sampler.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Shader.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Sync.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Texture.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Ubo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Ubo.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Vao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Vao.cpp -------------------------------------------------------------------------------- /src/cinder/gl/VaoImplEs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/VaoImplEs.cpp -------------------------------------------------------------------------------- /src/cinder/gl/Vbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/Vbo.cpp -------------------------------------------------------------------------------- /src/cinder/gl/VboMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/VboMesh.cpp -------------------------------------------------------------------------------- /src/cinder/gl/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/draw.cpp -------------------------------------------------------------------------------- /src/cinder/gl/scoped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/scoped.cpp -------------------------------------------------------------------------------- /src/cinder/gl/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/gl/wrapper.cpp -------------------------------------------------------------------------------- /src/cinder/ip/Blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ip/Blend.cpp -------------------------------------------------------------------------------- /src/cinder/ip/Blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ip/Blur.cpp -------------------------------------------------------------------------------- /src/cinder/ip/Fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ip/Fill.cpp -------------------------------------------------------------------------------- /src/cinder/ip/Flip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ip/Flip.cpp -------------------------------------------------------------------------------- /src/cinder/ip/Grayscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ip/Grayscale.cpp -------------------------------------------------------------------------------- /src/cinder/ip/Hdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ip/Hdr.cpp -------------------------------------------------------------------------------- /src/cinder/ip/Resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ip/Resize.cpp -------------------------------------------------------------------------------- /src/cinder/ip/Threshold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ip/Threshold.cpp -------------------------------------------------------------------------------- /src/cinder/ip/Trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/ip/Trim.cpp -------------------------------------------------------------------------------- /src/cinder/linux/CinderLinux.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cinder/linux/Movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/linux/Movie.cpp -------------------------------------------------------------------------------- /src/cinder/svg/Svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/cinder/svg/Svg.cpp -------------------------------------------------------------------------------- /src/freetype/base/basepic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/basepic.c -------------------------------------------------------------------------------- /src/freetype/base/basepic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/basepic.h -------------------------------------------------------------------------------- /src/freetype/base/ftapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftapi.c -------------------------------------------------------------------------------- /src/freetype/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftbase.c -------------------------------------------------------------------------------- /src/freetype/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftbase.h -------------------------------------------------------------------------------- /src/freetype/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftbbox.c -------------------------------------------------------------------------------- /src/freetype/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftbdf.c -------------------------------------------------------------------------------- /src/freetype/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftcalc.c -------------------------------------------------------------------------------- /src/freetype/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftcid.c -------------------------------------------------------------------------------- /src/freetype/base/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftdebug.c -------------------------------------------------------------------------------- /src/freetype/base/ftgasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftgasp.c -------------------------------------------------------------------------------- /src/freetype/base/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftglyph.c -------------------------------------------------------------------------------- /src/freetype/base/ftgxval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftgxval.c -------------------------------------------------------------------------------- /src/freetype/base/fthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/fthash.c -------------------------------------------------------------------------------- /src/freetype/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftinit.c -------------------------------------------------------------------------------- /src/freetype/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftmac.c -------------------------------------------------------------------------------- /src/freetype/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftmm.c -------------------------------------------------------------------------------- /src/freetype/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftobjs.c -------------------------------------------------------------------------------- /src/freetype/base/ftotval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftotval.c -------------------------------------------------------------------------------- /src/freetype/base/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftoutln.c -------------------------------------------------------------------------------- /src/freetype/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftpfr.c -------------------------------------------------------------------------------- /src/freetype/base/ftpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftpic.c -------------------------------------------------------------------------------- /src/freetype/base/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftrfork.c -------------------------------------------------------------------------------- /src/freetype/base/ftsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftsynth.c -------------------------------------------------------------------------------- /src/freetype/base/fttype1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/fttype1.c -------------------------------------------------------------------------------- /src/freetype/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/ftutil.c -------------------------------------------------------------------------------- /src/freetype/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/md5.c -------------------------------------------------------------------------------- /src/freetype/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/base/md5.h -------------------------------------------------------------------------------- /src/freetype/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/bdf/bdf.c -------------------------------------------------------------------------------- /src/freetype/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/bdf/bdf.h -------------------------------------------------------------------------------- /src/freetype/bdf/bdfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/bdf/bdfdrivr.c -------------------------------------------------------------------------------- /src/freetype/bdf/bdfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/bdf/bdfdrivr.h -------------------------------------------------------------------------------- /src/freetype/bdf/bdferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/bdf/bdferror.h -------------------------------------------------------------------------------- /src/freetype/bdf/bdflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/bdf/bdflib.c -------------------------------------------------------------------------------- /src/freetype/cache/ftcmru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cache/ftcmru.c -------------------------------------------------------------------------------- /src/freetype/cache/ftcmru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cache/ftcmru.h -------------------------------------------------------------------------------- /src/freetype/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cff.c -------------------------------------------------------------------------------- /src/freetype/cff/cffcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffcmap.c -------------------------------------------------------------------------------- /src/freetype/cff/cffcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffcmap.h -------------------------------------------------------------------------------- /src/freetype/cff/cffdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffdrivr.c -------------------------------------------------------------------------------- /src/freetype/cff/cffdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffdrivr.h -------------------------------------------------------------------------------- /src/freetype/cff/cfferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cfferrs.h -------------------------------------------------------------------------------- /src/freetype/cff/cffgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffgload.c -------------------------------------------------------------------------------- /src/freetype/cff/cffgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffgload.h -------------------------------------------------------------------------------- /src/freetype/cff/cffload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffload.c -------------------------------------------------------------------------------- /src/freetype/cff/cffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffload.h -------------------------------------------------------------------------------- /src/freetype/cff/cffobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffobjs.c -------------------------------------------------------------------------------- /src/freetype/cff/cffobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffobjs.h -------------------------------------------------------------------------------- /src/freetype/cff/cffparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffparse.c -------------------------------------------------------------------------------- /src/freetype/cff/cffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffparse.h -------------------------------------------------------------------------------- /src/freetype/cff/cffpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffpic.c -------------------------------------------------------------------------------- /src/freetype/cff/cffpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cffpic.h -------------------------------------------------------------------------------- /src/freetype/cff/cfftoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cff/cfftoken.h -------------------------------------------------------------------------------- /src/freetype/cid/ciderrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/ciderrs.h -------------------------------------------------------------------------------- /src/freetype/cid/cidgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidgload.c -------------------------------------------------------------------------------- /src/freetype/cid/cidgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidgload.h -------------------------------------------------------------------------------- /src/freetype/cid/cidload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidload.c -------------------------------------------------------------------------------- /src/freetype/cid/cidload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidload.h -------------------------------------------------------------------------------- /src/freetype/cid/cidobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidobjs.c -------------------------------------------------------------------------------- /src/freetype/cid/cidobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidobjs.h -------------------------------------------------------------------------------- /src/freetype/cid/cidparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidparse.c -------------------------------------------------------------------------------- /src/freetype/cid/cidparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidparse.h -------------------------------------------------------------------------------- /src/freetype/cid/cidriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidriver.c -------------------------------------------------------------------------------- /src/freetype/cid/cidriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidriver.h -------------------------------------------------------------------------------- /src/freetype/cid/cidtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/cidtoken.h -------------------------------------------------------------------------------- /src/freetype/cid/type1cid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/cid/type1cid.c -------------------------------------------------------------------------------- /src/freetype/gzip/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/gzip/adler32.c -------------------------------------------------------------------------------- /src/freetype/gzip/ftgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/gzip/ftgzip.c -------------------------------------------------------------------------------- /src/freetype/gzip/ftzconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/gzip/ftzconf.h -------------------------------------------------------------------------------- /src/freetype/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/gzip/inflate.c -------------------------------------------------------------------------------- /src/freetype/gzip/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/gzip/infutil.c -------------------------------------------------------------------------------- /src/freetype/gzip/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/gzip/infutil.h -------------------------------------------------------------------------------- /src/freetype/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/gzip/zlib.h -------------------------------------------------------------------------------- /src/freetype/gzip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/gzip/zutil.c -------------------------------------------------------------------------------- /src/freetype/gzip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/gzip/zutil.h -------------------------------------------------------------------------------- /src/freetype/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/lzw/ftlzw.c -------------------------------------------------------------------------------- /src/freetype/lzw/ftzopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/lzw/ftzopen.c -------------------------------------------------------------------------------- /src/freetype/lzw/ftzopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/lzw/ftzopen.h -------------------------------------------------------------------------------- /src/freetype/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pcf/pcf.c -------------------------------------------------------------------------------- /src/freetype/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pcf/pcf.h -------------------------------------------------------------------------------- /src/freetype/pcf/pcfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pcf/pcfdrivr.c -------------------------------------------------------------------------------- /src/freetype/pcf/pcfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pcf/pcfdrivr.h -------------------------------------------------------------------------------- /src/freetype/pcf/pcferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pcf/pcferror.h -------------------------------------------------------------------------------- /src/freetype/pcf/pcfread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pcf/pcfread.c -------------------------------------------------------------------------------- /src/freetype/pcf/pcfread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pcf/pcfread.h -------------------------------------------------------------------------------- /src/freetype/pcf/pcfutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pcf/pcfutil.c -------------------------------------------------------------------------------- /src/freetype/pcf/pcfutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pcf/pcfutil.h -------------------------------------------------------------------------------- /src/freetype/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfr.c -------------------------------------------------------------------------------- /src/freetype/pfr/pfrcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrcmap.c -------------------------------------------------------------------------------- /src/freetype/pfr/pfrcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrcmap.h -------------------------------------------------------------------------------- /src/freetype/pfr/pfrdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrdrivr.c -------------------------------------------------------------------------------- /src/freetype/pfr/pfrdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrdrivr.h -------------------------------------------------------------------------------- /src/freetype/pfr/pfrerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrerror.h -------------------------------------------------------------------------------- /src/freetype/pfr/pfrgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrgload.c -------------------------------------------------------------------------------- /src/freetype/pfr/pfrgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrgload.h -------------------------------------------------------------------------------- /src/freetype/pfr/pfrload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrload.c -------------------------------------------------------------------------------- /src/freetype/pfr/pfrload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrload.h -------------------------------------------------------------------------------- /src/freetype/pfr/pfrobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrobjs.c -------------------------------------------------------------------------------- /src/freetype/pfr/pfrobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrobjs.h -------------------------------------------------------------------------------- /src/freetype/pfr/pfrsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrsbit.c -------------------------------------------------------------------------------- /src/freetype/pfr/pfrsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrsbit.h -------------------------------------------------------------------------------- /src/freetype/pfr/pfrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/pfr/pfrtypes.h -------------------------------------------------------------------------------- /src/freetype/psaux/psaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psaux.c -------------------------------------------------------------------------------- /src/freetype/psaux/psconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psconv.c -------------------------------------------------------------------------------- /src/freetype/psaux/psconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psconv.h -------------------------------------------------------------------------------- /src/freetype/psaux/psfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psfont.c -------------------------------------------------------------------------------- /src/freetype/psaux/psfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psfont.h -------------------------------------------------------------------------------- /src/freetype/psaux/psft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psft.c -------------------------------------------------------------------------------- /src/freetype/psaux/psft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psft.h -------------------------------------------------------------------------------- /src/freetype/psaux/psglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psglue.h -------------------------------------------------------------------------------- /src/freetype/psaux/psobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psobjs.c -------------------------------------------------------------------------------- /src/freetype/psaux/psobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psobjs.h -------------------------------------------------------------------------------- /src/freetype/psaux/psread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psread.c -------------------------------------------------------------------------------- /src/freetype/psaux/psread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/psread.h -------------------------------------------------------------------------------- /src/freetype/psaux/t1cmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/t1cmap.c -------------------------------------------------------------------------------- /src/freetype/psaux/t1cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/psaux/t1cmap.h -------------------------------------------------------------------------------- /src/freetype/sfnt/pngshim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/pngshim.c -------------------------------------------------------------------------------- /src/freetype/sfnt/pngshim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/pngshim.h -------------------------------------------------------------------------------- /src/freetype/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/sfnt.c -------------------------------------------------------------------------------- /src/freetype/sfnt/sfntpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/sfntpic.c -------------------------------------------------------------------------------- /src/freetype/sfnt/sfntpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/sfntpic.h -------------------------------------------------------------------------------- /src/freetype/sfnt/sfobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/sfobjs.c -------------------------------------------------------------------------------- /src/freetype/sfnt/sfobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/sfobjs.h -------------------------------------------------------------------------------- /src/freetype/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttbdf.c -------------------------------------------------------------------------------- /src/freetype/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttbdf.h -------------------------------------------------------------------------------- /src/freetype/sfnt/ttcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttcmap.c -------------------------------------------------------------------------------- /src/freetype/sfnt/ttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttcmap.h -------------------------------------------------------------------------------- /src/freetype/sfnt/ttcmapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttcmapc.h -------------------------------------------------------------------------------- /src/freetype/sfnt/ttkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttkern.c -------------------------------------------------------------------------------- /src/freetype/sfnt/ttkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttkern.h -------------------------------------------------------------------------------- /src/freetype/sfnt/ttload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttload.c -------------------------------------------------------------------------------- /src/freetype/sfnt/ttload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttload.h -------------------------------------------------------------------------------- /src/freetype/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttmtx.c -------------------------------------------------------------------------------- /src/freetype/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttmtx.h -------------------------------------------------------------------------------- /src/freetype/sfnt/ttpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttpost.c -------------------------------------------------------------------------------- /src/freetype/sfnt/ttpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttpost.h -------------------------------------------------------------------------------- /src/freetype/sfnt/ttsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttsbit.c -------------------------------------------------------------------------------- /src/freetype/sfnt/ttsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/sfnt/ttsbit.h -------------------------------------------------------------------------------- /src/freetype/type1/t1afm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/type1/t1afm.c -------------------------------------------------------------------------------- /src/freetype/type1/t1afm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/type1/t1afm.h -------------------------------------------------------------------------------- /src/freetype/type1/t1load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/type1/t1load.c -------------------------------------------------------------------------------- /src/freetype/type1/t1load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/type1/t1load.h -------------------------------------------------------------------------------- /src/freetype/type1/t1objs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/type1/t1objs.c -------------------------------------------------------------------------------- /src/freetype/type1/t1objs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/type1/t1objs.h -------------------------------------------------------------------------------- /src/freetype/type1/type1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/freetype/type1/type1.c -------------------------------------------------------------------------------- /src/glad/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glad/glad.c -------------------------------------------------------------------------------- /src/glad/glad_es.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glad/glad_es.c -------------------------------------------------------------------------------- /src/glad/glad_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glad/glad_glx.c -------------------------------------------------------------------------------- /src/glad/glad_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glad/glad_wgl.c -------------------------------------------------------------------------------- /src/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/deps/getopt.c -------------------------------------------------------------------------------- /src/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/deps/getopt.h -------------------------------------------------------------------------------- /src/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /src/glfw/deps/glad/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/deps/glad/gles2.h -------------------------------------------------------------------------------- /src/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /src/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/deps/linmath.h -------------------------------------------------------------------------------- /src/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /src/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /src/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /src/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /src/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /src/glfw/src/cocoa_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/cocoa_time.h -------------------------------------------------------------------------------- /src/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /src/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/context.c -------------------------------------------------------------------------------- /src/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/egl_context.c -------------------------------------------------------------------------------- /src/glfw/src/glfw.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/glfw.rc.in -------------------------------------------------------------------------------- /src/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/glx_context.c -------------------------------------------------------------------------------- /src/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/init.c -------------------------------------------------------------------------------- /src/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/input.c -------------------------------------------------------------------------------- /src/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/internal.h -------------------------------------------------------------------------------- /src/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/mappings.h -------------------------------------------------------------------------------- /src/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /src/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/monitor.c -------------------------------------------------------------------------------- /src/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /src/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/null_init.c -------------------------------------------------------------------------------- /src/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /src/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/null_window.c -------------------------------------------------------------------------------- /src/glfw/src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/platform.c -------------------------------------------------------------------------------- /src/glfw/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/platform.h -------------------------------------------------------------------------------- /src/glfw/src/posix_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/posix_module.c -------------------------------------------------------------------------------- /src/glfw/src/posix_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/posix_poll.c -------------------------------------------------------------------------------- /src/glfw/src/posix_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/posix_poll.h -------------------------------------------------------------------------------- /src/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /src/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /src/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/posix_time.c -------------------------------------------------------------------------------- /src/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/posix_time.h -------------------------------------------------------------------------------- /src/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/vulkan.c -------------------------------------------------------------------------------- /src/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /src/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/win32_init.c -------------------------------------------------------------------------------- /src/glfw/src/win32_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/win32_module.c -------------------------------------------------------------------------------- /src/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /src/glfw/src/win32_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/win32_thread.h -------------------------------------------------------------------------------- /src/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/win32_time.c -------------------------------------------------------------------------------- /src/glfw/src/win32_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/win32_time.h -------------------------------------------------------------------------------- /src/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/win32_window.c -------------------------------------------------------------------------------- /src/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/window.c -------------------------------------------------------------------------------- /src/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/wl_init.c -------------------------------------------------------------------------------- /src/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /src/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /src/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/wl_window.c -------------------------------------------------------------------------------- /src/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/x11_init.c -------------------------------------------------------------------------------- /src/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /src/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /src/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/x11_window.c -------------------------------------------------------------------------------- /src/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /src/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /src/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/imgui/imgui.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/imgui/imgui_stdlib.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /src/jsoncpp/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/jsoncpp/jsoncpp.cpp -------------------------------------------------------------------------------- /src/libtess2/bucketalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/bucketalloc.c -------------------------------------------------------------------------------- /src/libtess2/bucketalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/bucketalloc.h -------------------------------------------------------------------------------- /src/libtess2/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/dict.c -------------------------------------------------------------------------------- /src/libtess2/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/dict.h -------------------------------------------------------------------------------- /src/libtess2/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/geom.c -------------------------------------------------------------------------------- /src/libtess2/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/geom.h -------------------------------------------------------------------------------- /src/libtess2/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/mesh.c -------------------------------------------------------------------------------- /src/libtess2/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/mesh.h -------------------------------------------------------------------------------- /src/libtess2/priorityq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/priorityq.c -------------------------------------------------------------------------------- /src/libtess2/priorityq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/priorityq.h -------------------------------------------------------------------------------- /src/libtess2/sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/sweep.c -------------------------------------------------------------------------------- /src/libtess2/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/sweep.h -------------------------------------------------------------------------------- /src/libtess2/tess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/tess.c -------------------------------------------------------------------------------- /src/libtess2/tess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/tess.h -------------------------------------------------------------------------------- /src/libtess2/tesselator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/libtess2/tesselator.h -------------------------------------------------------------------------------- /src/linebreak/linebreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/linebreak/linebreak.c -------------------------------------------------------------------------------- /src/linebreak/linebreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/linebreak/linebreak.h -------------------------------------------------------------------------------- /src/oggvorbis/ogg/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/ogg/bitwise.c -------------------------------------------------------------------------------- /src/oggvorbis/ogg/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/ogg/framing.c -------------------------------------------------------------------------------- /src/oggvorbis/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/readme.txt -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/info.c -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/lpc.c -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/lpc.h -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/lsp.c -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/lsp.h -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/mdct.c -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/mdct.h -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/misc.h -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/os.h -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/psy.c -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/psy.h -------------------------------------------------------------------------------- /src/oggvorbis/vorbis/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/oggvorbis/vorbis/res0.c -------------------------------------------------------------------------------- /src/r8brain/CDSPFIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/r8brain/CDSPFIRFilter.h -------------------------------------------------------------------------------- /src/r8brain/CDSPRealFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/r8brain/CDSPRealFFT.h -------------------------------------------------------------------------------- /src/r8brain/CDSPResampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/r8brain/CDSPResampler.h -------------------------------------------------------------------------------- /src/r8brain/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/r8brain/License.txt -------------------------------------------------------------------------------- /src/r8brain/fft4g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/r8brain/fft4g.h -------------------------------------------------------------------------------- /src/r8brain/r8bbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/r8brain/r8bbase.cpp -------------------------------------------------------------------------------- /src/r8brain/r8bbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/r8brain/r8bbase.h -------------------------------------------------------------------------------- /src/r8brain/r8bconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/r8brain/r8bconf.h -------------------------------------------------------------------------------- /src/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/adler32.c -------------------------------------------------------------------------------- /src/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/compress.c -------------------------------------------------------------------------------- /src/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/crc32.c -------------------------------------------------------------------------------- /src/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/crc32.h -------------------------------------------------------------------------------- /src/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/deflate.c -------------------------------------------------------------------------------- /src/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/deflate.h -------------------------------------------------------------------------------- /src/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/gzclose.c -------------------------------------------------------------------------------- /src/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/gzguts.h -------------------------------------------------------------------------------- /src/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/gzlib.c -------------------------------------------------------------------------------- /src/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/gzread.c -------------------------------------------------------------------------------- /src/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/gzwrite.c -------------------------------------------------------------------------------- /src/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/infback.c -------------------------------------------------------------------------------- /src/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/inffast.c -------------------------------------------------------------------------------- /src/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/inffast.h -------------------------------------------------------------------------------- /src/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/inffixed.h -------------------------------------------------------------------------------- /src/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/inflate.c -------------------------------------------------------------------------------- /src/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/inflate.h -------------------------------------------------------------------------------- /src/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/inftrees.c -------------------------------------------------------------------------------- /src/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/inftrees.h -------------------------------------------------------------------------------- /src/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/trees.c -------------------------------------------------------------------------------- /src/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/trees.h -------------------------------------------------------------------------------- /src/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/uncompr.c -------------------------------------------------------------------------------- /src/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/zconf.h -------------------------------------------------------------------------------- /src/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/zlib.h -------------------------------------------------------------------------------- /src/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/zutil.c -------------------------------------------------------------------------------- /src/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/src/zlib/zutil.h -------------------------------------------------------------------------------- /test/Android/ActivityStartStop/androidstudio/ActivityStartStop/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/Backtrace/androidstudio/Backtrace/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/CaptureTest/androidstudio/CaptureTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/GetSpecialDirs/androidstudio/GetSpecialDirs/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/InputEvents/androidstudio/InputEvents/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/LaunchTwitter/androidstudio/LaunchTwitter/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/LaunchWebBrowser/androidstudio/LaunchWebBrowser/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/LoggerLevels/androidstudio/LoggerLevels/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/NormalizePathTest/androidstudio/NormalizePathTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/OpenGLTest/androidstudio/OpenGLTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/ScratchApp/androidstudio/ScratchApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/Sensors/androidstudio/Sensors/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/SetWallpaper/androidstudio/SetWallpaper/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/Android/SoundRawAPI/androidstudio/SoundRawAPI/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /test/_audio/AudioTests/proj/vc2022/Resources.rc: -------------------------------------------------------------------------------- 1 | 2 | 1 ICON "..\\resources\\cinder_app_icon.ico" 3 | -------------------------------------------------------------------------------- /test/cairoTest/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/cairoTest/Resources.h -------------------------------------------------------------------------------- /test/iosQuickTimeTest/assets/needs_test.mov: -------------------------------------------------------------------------------- 1 | Replace this with a valid .mov -------------------------------------------------------------------------------- /test/resizeTest/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/resizeTest/Resources.h -------------------------------------------------------------------------------- /test/resizeTest/vc2015/Resources.rc: -------------------------------------------------------------------------------- 1 | #include "../Resources.h" 2 | 3 | RES_IMAGE 4 | -------------------------------------------------------------------------------- /test/unit/assets/test_load_write_string.txt: -------------------------------------------------------------------------------- 1 | Hey Hey 2 | Ho Ho 3 | -------------------------------------------------------------------------------- /test/unit/assets/test_watch.txt: -------------------------------------------------------------------------------- 1 | used by FileWatcherTest 2 | -------------------------------------------------------------------------------- /test/unit/src/JsonTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/unit/src/JsonTest.cpp -------------------------------------------------------------------------------- /test/unit/src/MediaTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/unit/src/MediaTime.cpp -------------------------------------------------------------------------------- /test/unit/src/RandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/unit/src/RandTest.cpp -------------------------------------------------------------------------------- /test/unit/src/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/unit/src/TestMain.cpp -------------------------------------------------------------------------------- /test/unit/src/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/unit/src/Utilities.cpp -------------------------------------------------------------------------------- /test/unit/src/audio/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/unit/src/audio/utils.h -------------------------------------------------------------------------------- /test/unit/src/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/unit/src/catch.hpp -------------------------------------------------------------------------------- /test/unit/vc2022/unit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/unit/vc2022/unit.sln -------------------------------------------------------------------------------- /test/unit/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/test/unit/xcode/Info.plist -------------------------------------------------------------------------------- /tools/android/CinderAppBuild/plugin/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'cinderappbuild' 2 | -------------------------------------------------------------------------------- /tools/android/asprojgen/template/CinderApp/androidstudio/CinderApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tools/ci/cmake_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/tools/ci/cmake_test.sh -------------------------------------------------------------------------------- /tools/ci/xcode_osx_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/tools/ci/xcode_osx_test.sh -------------------------------------------------------------------------------- /tools/scripts/deleteline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/tools/scripts/deleteline.py -------------------------------------------------------------------------------- /tools/scripts/insertline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/tools/scripts/insertline.py -------------------------------------------------------------------------------- /tools/scripts/vcprojedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/tools/scripts/vcprojedit.py -------------------------------------------------------------------------------- /tools/scripts/walkDirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/Cinder/HEAD/tools/scripts/walkDirs.py --------------------------------------------------------------------------------