├── .gitignore ├── OFL.txt ├── README.md ├── include ├── cinder │ └── gl │ │ ├── SdfText.h │ │ └── SdfTextMesh.h └── msdfgen │ ├── core │ ├── Bitmap.h │ ├── Contour.h │ ├── EdgeColor.h │ ├── EdgeHolder.h │ ├── Shape.h │ ├── SignedDistance.h │ ├── Vector2.h │ ├── arithmetics.hpp │ ├── edge-coloring.h │ ├── edge-segments.h │ ├── equation-solver.h │ ├── render-sdf.h │ ├── save-bmp.h │ └── shape-description.h │ ├── msdfgen.h │ └── util.h ├── proj └── cmake │ └── Cinder-SdfTextConfig.cmake ├── samples ├── Basic │ ├── assets │ │ └── Roboto-Regular.ttf │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ ├── src │ │ └── BasicApp.cpp │ ├── vc2013 │ │ ├── Basic.sln │ │ ├── Basic.vcxproj │ │ ├── Basic.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── Basic.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Basic_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── Basic.xcodeproj │ │ └── project.pbxproj │ │ ├── Basic_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 ├── BasicMesh │ ├── assets │ │ └── VarelaRound-Regular.ttf │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ ├── src │ │ └── BasicMeshApp.cpp │ ├── vc2013 │ │ ├── BasicMesh.sln │ │ ├── BasicMesh.vcxproj │ │ ├── BasicMesh.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── BasicMesh.xcodeproj │ │ │ └── project.pbxproj │ │ ├── BasicMesh_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── BasicMesh.xcodeproj │ │ └── project.pbxproj │ │ ├── BasicMesh_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 ├── CreateSaveLoad │ ├── assets │ │ └── VarelaRound-Regular.ttf │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ ├── src │ │ └── CreateSaveLoad.cpp │ ├── vc2013 │ │ ├── CreateSaveLoad.sln │ │ ├── CreateSaveLoad.vcxproj │ │ ├── CreateSaveLoad.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── CreateSaveLoad.xcodeproj │ │ │ └── project.pbxproj │ │ ├── CreateSaveLoad_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── CreateSaveLoad.xcodeproj │ │ └── project.pbxproj │ │ ├── CreateSaveLoad_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 ├── FontSizes │ ├── assets │ │ └── bg.png │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ └── cinder_app_icon.ico │ ├── src │ │ └── FontSizesApp.cpp │ └── vc2013 │ │ ├── FontSizes.sln │ │ ├── FontSizes.vcxproj │ │ ├── FontSizes.vcxproj.filters │ │ └── Resources.rc ├── Languages │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ └── cinder_app_icon.ico │ ├── src │ │ └── LanguagesApp.cpp │ └── vc2013 │ │ ├── Languages.sln │ │ ├── Languages.vcxproj │ │ ├── Languages.vcxproj.filters │ │ └── Resources.rc ├── MeasureString │ ├── assets │ │ ├── cached_font.sdft │ │ └── fonts │ │ │ └── VarelaRound-Regular.ttf │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ ├── src │ │ └── MeasureStringApp.cpp │ ├── vc2013 │ │ ├── MeasureString.sln │ │ ├── MeasureString.vcxproj │ │ ├── MeasureString.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── Info.plist │ │ ├── MeasureString.xcodeproj │ │ │ └── project.pbxproj │ │ └── MeasureString_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 │ │ ├── MeasureString.xcodeproj │ │ └── project.pbxproj │ │ └── MeasureString_Prefix.pch ├── MeshPages │ ├── assets │ │ ├── Alike-Regular.ttf │ │ └── Alike.sdft │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ ├── src │ │ └── MeshPagesApp.cpp │ ├── vc2013 │ │ ├── MeshPages.sln │ │ ├── MeshPages.vcxproj │ │ ├── MeshPages.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── Info.plist │ │ ├── MeshPages.xcodeproj │ │ │ └── project.pbxproj │ │ └── MeshPages_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 │ │ ├── MeshPages.xcodeproj │ │ └── project.pbxproj │ │ └── MeshPages_Prefix.pch ├── SaveLoad │ ├── assets │ │ ├── AlfaSlabOne.sdft │ │ ├── Candal.sdft │ │ ├── Cinzel.sdft │ │ ├── FontdinerSwanky.sdft │ │ ├── Lobster.sdft │ │ ├── LuckiestGuy.sdft │ │ ├── Orbitron.sdft │ │ ├── Righteous.sdft │ │ ├── Syncopate.sdft │ │ ├── VarelaRound.sdft │ │ └── fonts │ │ │ ├── AlfaSlabOne-Regular.ttf │ │ │ ├── Audiowide-Regular.ttf │ │ │ ├── Candal.ttf │ │ │ ├── Cinzel-Regular.ttf │ │ │ ├── FontdinerSwanky.ttf │ │ │ ├── Lobster-Regular.ttf │ │ │ ├── LuckiestGuy.ttf │ │ │ ├── Orbitron-Regular.ttf │ │ │ ├── Righteous-Regular.ttf │ │ │ ├── Syncopate-Regular.ttf │ │ │ └── VarelaRound-Regular.ttf │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ ├── src │ │ └── SaveLoadApp.cpp │ ├── vc2013 │ │ ├── Resources.rc │ │ ├── SaveLoad.sln │ │ ├── SaveLoad.vcxproj │ │ └── SaveLoad.vcxproj.filters │ ├── xcode │ │ ├── Info.plist │ │ ├── SaveLoad.xcodeproj │ │ │ └── project.pbxproj │ │ └── SaveLoad_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 │ │ ├── SaveLoad.xcodeproj │ │ └── project.pbxproj │ │ └── SaveLoad_Prefix.pch ├── StarWars │ ├── assets │ │ └── LibreFranklin-ExtraBold.ttf │ ├── include │ │ └── Resources.h │ ├── proj │ │ └── cmake │ │ │ └── CMakeLists.txt │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ ├── src │ │ └── StarWarsApp.cpp │ ├── vc2013 │ │ ├── Resources.rc │ │ ├── StarWars.sln │ │ ├── StarWars.vcxproj │ │ └── StarWars.vcxproj.filters │ ├── xcode │ │ ├── Info.plist │ │ ├── StarWars.xcodeproj │ │ │ └── project.pbxproj │ │ └── StarWars_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 │ │ ├── StarWars.xcodeproj │ │ └── project.pbxproj │ │ └── StarWars_Prefix.pch └── _AllSamples │ └── vc2013 │ └── AllSamples.sln ├── src ├── cinder │ └── gl │ │ ├── SdfText.cpp │ │ └── SdfTextMesh.cpp └── msdfgen │ ├── core │ ├── Bitmap.cpp │ ├── Contour.cpp │ ├── EdgeHolder.cpp │ ├── Shape.cpp │ ├── SignedDistance.cpp │ ├── Vector2.cpp │ ├── edge-coloring.cpp │ ├── edge-segments.cpp │ ├── equation-solver.cpp │ ├── render-sdf.cpp │ ├── save-bmp.cpp │ └── shape-description.cpp │ ├── msdfgen.cpp │ └── util.cpp ├── vc2013 ├── Cinder-SdfText.sln ├── Cinder-SdfText.vcxproj └── Cinder-SdfText.vcxproj.filters └── xcode └── Cinder-SdfText.xcodeproj ├── project.pbxproj └── xcuserdata └── hai.xcuserdatad └── xcschemes ├── cinder-sdftext-ios-sim.xcscheme ├── cinder-sdftext-ios.xcscheme ├── cinder-sdftext-macosx.xcscheme └── xcschememanagement.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/.gitignore -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/README.md -------------------------------------------------------------------------------- /include/cinder/gl/SdfText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/cinder/gl/SdfText.h -------------------------------------------------------------------------------- /include/cinder/gl/SdfTextMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/cinder/gl/SdfTextMesh.h -------------------------------------------------------------------------------- /include/msdfgen/core/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/Bitmap.h -------------------------------------------------------------------------------- /include/msdfgen/core/Contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/Contour.h -------------------------------------------------------------------------------- /include/msdfgen/core/EdgeColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/EdgeColor.h -------------------------------------------------------------------------------- /include/msdfgen/core/EdgeHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/EdgeHolder.h -------------------------------------------------------------------------------- /include/msdfgen/core/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/Shape.h -------------------------------------------------------------------------------- /include/msdfgen/core/SignedDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/SignedDistance.h -------------------------------------------------------------------------------- /include/msdfgen/core/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/Vector2.h -------------------------------------------------------------------------------- /include/msdfgen/core/arithmetics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/arithmetics.hpp -------------------------------------------------------------------------------- /include/msdfgen/core/edge-coloring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/edge-coloring.h -------------------------------------------------------------------------------- /include/msdfgen/core/edge-segments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/edge-segments.h -------------------------------------------------------------------------------- /include/msdfgen/core/equation-solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/equation-solver.h -------------------------------------------------------------------------------- /include/msdfgen/core/render-sdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/render-sdf.h -------------------------------------------------------------------------------- /include/msdfgen/core/save-bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/save-bmp.h -------------------------------------------------------------------------------- /include/msdfgen/core/shape-description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/core/shape-description.h -------------------------------------------------------------------------------- /include/msdfgen/msdfgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/msdfgen.h -------------------------------------------------------------------------------- /include/msdfgen/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/include/msdfgen/util.h -------------------------------------------------------------------------------- /proj/cmake/Cinder-SdfTextConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/proj/cmake/Cinder-SdfTextConfig.cmake -------------------------------------------------------------------------------- /samples/Basic/assets/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/assets/Roboto-Regular.ttf -------------------------------------------------------------------------------- /samples/Basic/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/include/Resources.h -------------------------------------------------------------------------------- /samples/Basic/proj/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/proj/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /samples/Basic/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/Basic/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/Basic/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/Basic/src/BasicApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/src/BasicApp.cpp -------------------------------------------------------------------------------- /samples/Basic/vc2013/Basic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/vc2013/Basic.sln -------------------------------------------------------------------------------- /samples/Basic/vc2013/Basic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/vc2013/Basic.vcxproj -------------------------------------------------------------------------------- /samples/Basic/vc2013/Basic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/vc2013/Basic.vcxproj.filters -------------------------------------------------------------------------------- /samples/Basic/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/Basic/xcode/Basic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode/Basic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/Basic/xcode/Basic_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode/Basic_Prefix.pch -------------------------------------------------------------------------------- /samples/Basic/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode/Info.plist -------------------------------------------------------------------------------- /samples/Basic/xcode_ios/Basic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode_ios/Basic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/Basic/xcode_ios/Basic_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode_ios/Basic_Prefix.pch -------------------------------------------------------------------------------- /samples/Basic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/Basic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/Basic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/Basic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/Basic/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/Basic/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Basic/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/BasicMesh/assets/VarelaRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/assets/VarelaRound-Regular.ttf -------------------------------------------------------------------------------- /samples/BasicMesh/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/include/Resources.h -------------------------------------------------------------------------------- /samples/BasicMesh/proj/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/proj/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /samples/BasicMesh/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/BasicMesh/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/BasicMesh/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/BasicMesh/src/BasicMeshApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/src/BasicMeshApp.cpp -------------------------------------------------------------------------------- /samples/BasicMesh/vc2013/BasicMesh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/vc2013/BasicMesh.sln -------------------------------------------------------------------------------- /samples/BasicMesh/vc2013/BasicMesh.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/vc2013/BasicMesh.vcxproj -------------------------------------------------------------------------------- /samples/BasicMesh/vc2013/BasicMesh.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/vc2013/BasicMesh.vcxproj.filters -------------------------------------------------------------------------------- /samples/BasicMesh/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/BasicMesh/xcode/BasicMesh.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode/BasicMesh.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/BasicMesh/xcode/BasicMesh_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode/BasicMesh_Prefix.pch -------------------------------------------------------------------------------- /samples/BasicMesh/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode/Info.plist -------------------------------------------------------------------------------- /samples/BasicMesh/xcode_ios/BasicMesh.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode_ios/BasicMesh.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/BasicMesh/xcode_ios/BasicMesh_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode_ios/BasicMesh_Prefix.pch -------------------------------------------------------------------------------- /samples/BasicMesh/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/BasicMesh/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/BasicMesh/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/BasicMesh/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/BasicMesh/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/BasicMesh/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/BasicMesh/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/CreateSaveLoad/assets/VarelaRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/assets/VarelaRound-Regular.ttf -------------------------------------------------------------------------------- /samples/CreateSaveLoad/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/include/Resources.h -------------------------------------------------------------------------------- /samples/CreateSaveLoad/proj/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/proj/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /samples/CreateSaveLoad/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/CreateSaveLoad/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/CreateSaveLoad/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/CreateSaveLoad/src/CreateSaveLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/src/CreateSaveLoad.cpp -------------------------------------------------------------------------------- /samples/CreateSaveLoad/vc2013/CreateSaveLoad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/vc2013/CreateSaveLoad.sln -------------------------------------------------------------------------------- /samples/CreateSaveLoad/vc2013/CreateSaveLoad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/vc2013/CreateSaveLoad.vcxproj -------------------------------------------------------------------------------- /samples/CreateSaveLoad/vc2013/CreateSaveLoad.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/vc2013/CreateSaveLoad.vcxproj.filters -------------------------------------------------------------------------------- /samples/CreateSaveLoad/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode/CreateSaveLoad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode/CreateSaveLoad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode/CreateSaveLoad_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode/CreateSaveLoad_Prefix.pch -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode/Info.plist -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode_ios/CreateSaveLoad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode_ios/CreateSaveLoad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode_ios/CreateSaveLoad_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode_ios/CreateSaveLoad_Prefix.pch -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/CreateSaveLoad/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/CreateSaveLoad/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/FontSizes/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/FontSizes/assets/bg.png -------------------------------------------------------------------------------- /samples/FontSizes/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/FontSizes/include/Resources.h -------------------------------------------------------------------------------- /samples/FontSizes/proj/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/FontSizes/proj/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /samples/FontSizes/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/FontSizes/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/FontSizes/src/FontSizesApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/FontSizes/src/FontSizesApp.cpp -------------------------------------------------------------------------------- /samples/FontSizes/vc2013/FontSizes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/FontSizes/vc2013/FontSizes.sln -------------------------------------------------------------------------------- /samples/FontSizes/vc2013/FontSizes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/FontSizes/vc2013/FontSizes.vcxproj -------------------------------------------------------------------------------- /samples/FontSizes/vc2013/FontSizes.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/FontSizes/vc2013/FontSizes.vcxproj.filters -------------------------------------------------------------------------------- /samples/FontSizes/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/FontSizes/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/Languages/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Languages/include/Resources.h -------------------------------------------------------------------------------- /samples/Languages/proj/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Languages/proj/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /samples/Languages/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Languages/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/Languages/src/LanguagesApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Languages/src/LanguagesApp.cpp -------------------------------------------------------------------------------- /samples/Languages/vc2013/Languages.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Languages/vc2013/Languages.sln -------------------------------------------------------------------------------- /samples/Languages/vc2013/Languages.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Languages/vc2013/Languages.vcxproj -------------------------------------------------------------------------------- /samples/Languages/vc2013/Languages.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Languages/vc2013/Languages.vcxproj.filters -------------------------------------------------------------------------------- /samples/Languages/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/Languages/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/MeasureString/assets/cached_font.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/assets/cached_font.sdft -------------------------------------------------------------------------------- /samples/MeasureString/assets/fonts/VarelaRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/assets/fonts/VarelaRound-Regular.ttf -------------------------------------------------------------------------------- /samples/MeasureString/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/include/Resources.h -------------------------------------------------------------------------------- /samples/MeasureString/proj/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/proj/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /samples/MeasureString/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/MeasureString/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/MeasureString/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/MeasureString/src/MeasureStringApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/src/MeasureStringApp.cpp -------------------------------------------------------------------------------- /samples/MeasureString/vc2013/MeasureString.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/vc2013/MeasureString.sln -------------------------------------------------------------------------------- /samples/MeasureString/vc2013/MeasureString.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/vc2013/MeasureString.vcxproj -------------------------------------------------------------------------------- /samples/MeasureString/vc2013/MeasureString.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/vc2013/MeasureString.vcxproj.filters -------------------------------------------------------------------------------- /samples/MeasureString/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/MeasureString/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode/Info.plist -------------------------------------------------------------------------------- /samples/MeasureString/xcode/MeasureString.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode/MeasureString.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/MeasureString/xcode/MeasureString_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode/MeasureString_Prefix.pch -------------------------------------------------------------------------------- /samples/MeasureString/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/MeasureString/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/MeasureString/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/MeasureString/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/MeasureString/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/MeasureString/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/MeasureString/xcode_ios/MeasureString.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode_ios/MeasureString.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/MeasureString/xcode_ios/MeasureString_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeasureString/xcode_ios/MeasureString_Prefix.pch -------------------------------------------------------------------------------- /samples/MeshPages/assets/Alike-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/assets/Alike-Regular.ttf -------------------------------------------------------------------------------- /samples/MeshPages/assets/Alike.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/assets/Alike.sdft -------------------------------------------------------------------------------- /samples/MeshPages/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/include/Resources.h -------------------------------------------------------------------------------- /samples/MeshPages/proj/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/proj/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /samples/MeshPages/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/MeshPages/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/MeshPages/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/MeshPages/src/MeshPagesApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/src/MeshPagesApp.cpp -------------------------------------------------------------------------------- /samples/MeshPages/vc2013/MeshPages.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/vc2013/MeshPages.sln -------------------------------------------------------------------------------- /samples/MeshPages/vc2013/MeshPages.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/vc2013/MeshPages.vcxproj -------------------------------------------------------------------------------- /samples/MeshPages/vc2013/MeshPages.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/vc2013/MeshPages.vcxproj.filters -------------------------------------------------------------------------------- /samples/MeshPages/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/MeshPages/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode/Info.plist -------------------------------------------------------------------------------- /samples/MeshPages/xcode/MeshPages.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode/MeshPages.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/MeshPages/xcode/MeshPages_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode/MeshPages_Prefix.pch -------------------------------------------------------------------------------- /samples/MeshPages/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/MeshPages/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/MeshPages/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/MeshPages/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/MeshPages/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/MeshPages/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/MeshPages/xcode_ios/MeshPages.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode_ios/MeshPages.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/MeshPages/xcode_ios/MeshPages_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/MeshPages/xcode_ios/MeshPages_Prefix.pch -------------------------------------------------------------------------------- /samples/SaveLoad/assets/AlfaSlabOne.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/AlfaSlabOne.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/Candal.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/Candal.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/Cinzel.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/Cinzel.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/FontdinerSwanky.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/FontdinerSwanky.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/Lobster.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/Lobster.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/LuckiestGuy.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/LuckiestGuy.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/Orbitron.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/Orbitron.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/Righteous.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/Righteous.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/Syncopate.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/Syncopate.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/VarelaRound.sdft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/VarelaRound.sdft -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/AlfaSlabOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/AlfaSlabOne-Regular.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/Audiowide-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/Audiowide-Regular.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/Candal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/Candal.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/Cinzel-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/Cinzel-Regular.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/FontdinerSwanky.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/FontdinerSwanky.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/Lobster-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/Lobster-Regular.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/LuckiestGuy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/LuckiestGuy.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/Orbitron-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/Orbitron-Regular.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/Righteous-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/Righteous-Regular.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/Syncopate-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/Syncopate-Regular.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/assets/fonts/VarelaRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/assets/fonts/VarelaRound-Regular.ttf -------------------------------------------------------------------------------- /samples/SaveLoad/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/include/Resources.h -------------------------------------------------------------------------------- /samples/SaveLoad/proj/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/proj/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /samples/SaveLoad/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/SaveLoad/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/SaveLoad/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/SaveLoad/src/SaveLoadApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/src/SaveLoadApp.cpp -------------------------------------------------------------------------------- /samples/SaveLoad/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/SaveLoad/vc2013/SaveLoad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/vc2013/SaveLoad.sln -------------------------------------------------------------------------------- /samples/SaveLoad/vc2013/SaveLoad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/vc2013/SaveLoad.vcxproj -------------------------------------------------------------------------------- /samples/SaveLoad/vc2013/SaveLoad.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/vc2013/SaveLoad.vcxproj.filters -------------------------------------------------------------------------------- /samples/SaveLoad/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode/Info.plist -------------------------------------------------------------------------------- /samples/SaveLoad/xcode/SaveLoad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode/SaveLoad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/SaveLoad/xcode/SaveLoad_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode/SaveLoad_Prefix.pch -------------------------------------------------------------------------------- /samples/SaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/SaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/SaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/SaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/SaveLoad/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/SaveLoad/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/SaveLoad/xcode_ios/SaveLoad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode_ios/SaveLoad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/SaveLoad/xcode_ios/SaveLoad_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/SaveLoad/xcode_ios/SaveLoad_Prefix.pch -------------------------------------------------------------------------------- /samples/StarWars/assets/LibreFranklin-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/assets/LibreFranklin-ExtraBold.ttf -------------------------------------------------------------------------------- /samples/StarWars/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/include/Resources.h -------------------------------------------------------------------------------- /samples/StarWars/proj/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/proj/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /samples/StarWars/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/StarWars/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/StarWars/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/StarWars/src/StarWarsApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/src/StarWarsApp.cpp -------------------------------------------------------------------------------- /samples/StarWars/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/StarWars/vc2013/StarWars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/vc2013/StarWars.sln -------------------------------------------------------------------------------- /samples/StarWars/vc2013/StarWars.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/vc2013/StarWars.vcxproj -------------------------------------------------------------------------------- /samples/StarWars/vc2013/StarWars.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/vc2013/StarWars.vcxproj.filters -------------------------------------------------------------------------------- /samples/StarWars/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode/Info.plist -------------------------------------------------------------------------------- /samples/StarWars/xcode/StarWars.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode/StarWars.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/StarWars/xcode/StarWars_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode/StarWars_Prefix.pch -------------------------------------------------------------------------------- /samples/StarWars/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/StarWars/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/StarWars/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/StarWars/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/StarWars/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/StarWars/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/StarWars/xcode_ios/StarWars.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode_ios/StarWars.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/StarWars/xcode_ios/StarWars_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/StarWars/xcode_ios/StarWars_Prefix.pch -------------------------------------------------------------------------------- /samples/_AllSamples/vc2013/AllSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/samples/_AllSamples/vc2013/AllSamples.sln -------------------------------------------------------------------------------- /src/cinder/gl/SdfText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/cinder/gl/SdfText.cpp -------------------------------------------------------------------------------- /src/cinder/gl/SdfTextMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/cinder/gl/SdfTextMesh.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/Bitmap.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/Contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/Contour.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/EdgeHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/EdgeHolder.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/Shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/Shape.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/SignedDistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/SignedDistance.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/Vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/Vector2.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/edge-coloring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/edge-coloring.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/edge-segments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/edge-segments.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/equation-solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/equation-solver.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/render-sdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/render-sdf.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/save-bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/save-bmp.cpp -------------------------------------------------------------------------------- /src/msdfgen/core/shape-description.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/core/shape-description.cpp -------------------------------------------------------------------------------- /src/msdfgen/msdfgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/msdfgen.cpp -------------------------------------------------------------------------------- /src/msdfgen/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/src/msdfgen/util.cpp -------------------------------------------------------------------------------- /vc2013/Cinder-SdfText.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/vc2013/Cinder-SdfText.sln -------------------------------------------------------------------------------- /vc2013/Cinder-SdfText.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/vc2013/Cinder-SdfText.vcxproj -------------------------------------------------------------------------------- /vc2013/Cinder-SdfText.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/vc2013/Cinder-SdfText.vcxproj.filters -------------------------------------------------------------------------------- /xcode/Cinder-SdfText.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/xcode/Cinder-SdfText.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xcode/Cinder-SdfText.xcodeproj/xcuserdata/hai.xcuserdatad/xcschemes/cinder-sdftext-ios-sim.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/xcode/Cinder-SdfText.xcodeproj/xcuserdata/hai.xcuserdatad/xcschemes/cinder-sdftext-ios-sim.xcscheme -------------------------------------------------------------------------------- /xcode/Cinder-SdfText.xcodeproj/xcuserdata/hai.xcuserdatad/xcschemes/cinder-sdftext-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/xcode/Cinder-SdfText.xcodeproj/xcuserdata/hai.xcuserdatad/xcschemes/cinder-sdftext-ios.xcscheme -------------------------------------------------------------------------------- /xcode/Cinder-SdfText.xcodeproj/xcuserdata/hai.xcuserdatad/xcschemes/cinder-sdftext-macosx.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/xcode/Cinder-SdfText.xcodeproj/xcuserdata/hai.xcuserdatad/xcschemes/cinder-sdftext-macosx.xcscheme -------------------------------------------------------------------------------- /xcode/Cinder-SdfText.xcodeproj/xcuserdata/hai.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoticbob/Cinder-SdfText/HEAD/xcode/Cinder-SdfText.xcodeproj/xcuserdata/hai.xcuserdatad/xcschemes/xcschememanagement.plist --------------------------------------------------------------------------------