├── .gitattributes ├── .gitignore ├── Demos └── iOS │ ├── Common │ ├── Resources │ │ ├── Default.png │ │ ├── Icon-72.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ ├── TextureLoader.h │ ├── TextureLoader.mm │ ├── ViewController.h │ ├── ViewController.mm │ └── ftgles.xcconfig │ ├── HelloWorld │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── HelloWorld.cpp │ │ ├── HelloWorld.h │ │ └── main.m │ ├── Default-568h@2x.png │ ├── Fonts │ │ └── Diavlo_BLACK_II_37.otf │ ├── HelloWorld.xcodeproj │ │ └── project.pbxproj │ ├── Prefix.pch │ └── ftgles-info.plist │ ├── KeyboardDemo │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── KeyboardDemoController.cpp │ │ ├── KeyboardDemoController.h │ │ └── main.m │ ├── Default-568h@2x.png │ ├── Fonts │ │ └── BorisBlackBloxx.ttf │ ├── KeyboardDemo.xcodeproj │ │ └── project.pbxproj │ ├── Prefix.pch │ └── ftgles-info.plist │ ├── LayoutDemo │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── LayoutDemo.cpp │ │ ├── LayoutDemo.h │ │ └── main.m │ ├── Default-568h@2x.png │ ├── Fonts │ │ ├── BorisBlackBloxx.ttf │ │ ├── Cardo98s.ttf │ │ ├── Charybdis.ttf │ │ ├── Diavlo_BLACK_II_37.otf │ │ ├── Gartentika.ttf │ │ ├── RosewoodStd-Regular.otf │ │ ├── TOONISH.ttf │ │ └── brown_bear_funk.ttf │ ├── LayoutDemo.xcodeproj │ │ └── project.pbxproj │ ├── Prefix.pch │ └── ftgles-info.plist │ ├── PerformanceTest │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── PerformanceController.cpp │ │ ├── PerformanceController.h │ │ └── main.m │ ├── Default-568h@2x.png │ ├── Fonts │ │ ├── BorisBlackBloxx.ttf │ │ ├── Cardo98s.ttf │ │ ├── Charybdis.ttf │ │ ├── Diavlo_BLACK_II_37.otf │ │ ├── Gartentika.ttf │ │ ├── RosewoodStd-Regular.otf │ │ ├── TOONISH.ttf │ │ └── brown_bear_funk.ttf │ ├── PerformanceTest.xcodeproj │ │ └── project.pbxproj │ ├── Prefix.pch │ ├── ViewController_iPad.xib │ ├── ViewController_iPhone.xib │ └── ftgles-info.plist │ └── UnicodeDemo │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── UnicodeDemo.cpp │ ├── UnicodeDemo.h │ └── main.m │ ├── Default-568h@2x.png │ ├── Fonts │ ├── openprinting-jp-0.1.3 │ │ ├── COPYING │ │ ├── ipag.ttf │ │ ├── ipagp.ttf │ │ ├── ipagui.ttf │ │ ├── ipam.ttf │ │ └── ipamp.ttf │ ├── tuxpaint-ttf-chinese-simplified-2004.06.05 │ │ ├── COPYING.txt │ │ ├── README.txt │ │ └── zh_cn.ttf │ └── tuxpaint-ttf-chinese-traditional-2004.06.05 │ │ ├── COPYING.txt │ │ ├── README.txt │ │ └── zh_tw.ttf │ ├── Prefix.pch │ ├── UnicodeDemo.xcodeproj │ └── project.pbxproj │ └── ftgles-info.plist ├── INSTALL.md ├── LICENSE.md ├── README.md ├── TUTORIAL.md ├── Xcode ├── ftgles.xcodeproj │ └── project.pbxproj └── install.sh ├── ftgles ├── AUTHORS ├── BUGS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── TODO ├── autogen.sh ├── config.h.in ├── configure.ac ├── demo │ ├── FTGLDemo.cpp │ ├── FTGLMFontDemo.cpp │ ├── Makefile.am │ ├── c-demo.c │ ├── simple.cpp │ ├── tb.c │ ├── tb.h │ ├── trackball.c │ └── trackball.h ├── docs │ ├── FTGL_1_3.gif │ ├── Makefile │ ├── Makefile.am │ ├── doxygen.cfg │ ├── faq.dox │ ├── ftgl.dox │ ├── images │ │ ├── logo.png │ │ ├── metrics.png │ │ ├── metrics.svg │ │ ├── rasterfont.png │ │ ├── texturefont.png │ │ └── vectorfont.png │ ├── projects_using_ftgl.txt │ └── tutorial.dox ├── ftgles.pc ├── msvc │ ├── Makefile │ ├── Makefile.am │ ├── README.txt │ ├── config.h │ ├── vc71 │ │ ├── ftgl.sln │ │ └── ftgl_dll.vcproj │ └── vc8 │ │ ├── FTGLDemo.vcproj │ │ ├── SimpleDemo.vcproj │ │ ├── ftgl.sln │ │ ├── ftgl_demo.sln │ │ ├── ftgl_dll.vcproj │ │ ├── ftgl_static.vcproj │ │ ├── trackball.vcproj │ │ └── unit_tests.vcproj ├── src │ ├── FTBuffer.cpp │ ├── FTCharToGlyphIndexMap.h │ ├── FTCharmap.cpp │ ├── FTCharmap.h │ ├── FTContour.cpp │ ├── FTContour.h │ ├── FTFace.cpp │ ├── FTFace.h │ ├── FTFont │ │ ├── FTBitmapFont.cpp │ │ ├── FTBitmapFontImpl.h │ │ ├── FTBufferFont.cpp │ │ ├── FTBufferFontImpl.h │ │ ├── FTExtrudeFont.cpp │ │ ├── FTExtrudeFontImpl.h │ │ ├── FTFont.cpp │ │ ├── FTFontGlue.cpp │ │ ├── FTFontImpl.h │ │ ├── FTOutlineFont.cpp │ │ ├── FTOutlineFontImpl.h │ │ ├── FTPixmapFont.cpp │ │ ├── FTPixmapFontImpl.h │ │ ├── FTPolygonFont.cpp │ │ ├── FTPolygonFontImpl.h │ │ ├── FTTextureFont.cpp │ │ └── FTTextureFontImpl.h │ ├── FTGL │ │ ├── FTBBox.h │ │ ├── FTBitmapGlyph.h │ │ ├── FTBuffer.h │ │ ├── FTBufferFont.h │ │ ├── FTBufferGlyph.h │ │ ├── FTExtrdGlyph.h │ │ ├── FTFont.h │ │ ├── FTGLBitmapFont.h │ │ ├── FTGLExtrdFont.h │ │ ├── FTGLOutlineFont.h │ │ ├── FTGLPixmapFont.h │ │ ├── FTGLPolygonFont.h │ │ ├── FTGLTextureFont.h │ │ ├── FTGlyph.h │ │ ├── FTLayout.h │ │ ├── FTOutlineGlyph.h │ │ ├── FTPixmapGlyph.h │ │ ├── FTPoint.h │ │ ├── FTPolyGlyph.h │ │ ├── FTSimpleLayout.h │ │ ├── FTTextureGlyph.h │ │ ├── ftgles.h │ │ ├── ftglesGlue.cpp │ │ └── ftglesGlue.h │ ├── FTGlyph │ │ ├── FTBitmapGlyph.cpp │ │ ├── FTBitmapGlyphImpl.h │ │ ├── FTBufferGlyph.cpp │ │ ├── FTBufferGlyphImpl.h │ │ ├── FTExtrudeGlyph.cpp │ │ ├── FTExtrudeGlyphImpl.h │ │ ├── FTGlyph.cpp │ │ ├── FTGlyphGlue.cpp │ │ ├── FTGlyphImpl.h │ │ ├── FTOutlineGlyph.cpp │ │ ├── FTOutlineGlyphImpl.h │ │ ├── FTPixmapGlyph.cpp │ │ ├── FTPixmapGlyphImpl.h │ │ ├── FTPolygonGlyph.cpp │ │ ├── FTPolygonGlyphImpl.h │ │ ├── FTTextureGlyph.cpp │ │ └── FTTextureGlyphImpl.h │ ├── FTGlyphContainer.cpp │ ├── FTGlyphContainer.h │ ├── FTInternals.h │ ├── FTLayout │ │ ├── FTLayout.cpp │ │ ├── FTLayoutGlue.cpp │ │ ├── FTLayoutImpl.h │ │ ├── FTSimpleLayout.cpp │ │ └── FTSimpleLayoutImpl.h │ ├── FTLibrary.cpp │ ├── FTLibrary.h │ ├── FTList.h │ ├── FTPoint.cpp │ ├── FTSize.cpp │ ├── FTSize.h │ ├── FTUnicode.h │ ├── FTVector.h │ ├── FTVectoriser.cpp │ ├── FTVectoriser.h │ ├── Makefile.am │ └── iGLU-1.0.0 │ │ ├── README │ │ ├── configs │ │ ├── darwin │ │ ├── darwin-iphone │ │ └── default │ │ ├── include │ │ ├── glu.h │ │ └── gluos.h │ │ ├── libtess │ │ ├── README │ │ ├── alg-outline │ │ ├── dict-list.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── geom.c │ │ ├── geom.h │ │ ├── memalloc.c │ │ ├── memalloc.h │ │ ├── mesh.c │ │ ├── mesh.h │ │ ├── normal.c │ │ ├── normal.h │ │ ├── priorityq-heap.c │ │ ├── priorityq-heap.h │ │ ├── priorityq-sort.h │ │ ├── priorityq.c │ │ ├── priorityq.h │ │ ├── render.c │ │ ├── render.h │ │ ├── sweep.c │ │ ├── sweep.h │ │ ├── tess.c │ │ ├── tess.h │ │ ├── tessmono.c │ │ └── tessmono.h │ │ └── libutil │ │ ├── error.c │ │ ├── glue.c │ │ ├── gluint.h │ │ ├── project.c │ │ └── registry.c └── test │ ├── CTest.c │ ├── CXXTest.cpp │ ├── FTBBox-Test.cpp │ ├── FTBitmapFont-Test.cpp │ ├── FTBitmapGlyph-Test.cpp │ ├── FTCharToGlyphIndexMap-Test.cpp │ ├── FTCharmap-Test.cpp │ ├── FTContour-Test.cpp │ ├── FTExtrudeFont-Test.cpp │ ├── FTExtrudeGlyph-Test.cpp │ ├── FTFace-Test.cpp │ ├── FTFont-Test.cpp │ ├── FTGlyph-Test.cpp │ ├── FTGlyphContainer-Test.cpp │ ├── FTLibrary-Test.cpp │ ├── FTList-Test.cpp │ ├── FTMesh-Test.cpp │ ├── FTOutlineFont-Test.cpp │ ├── FTOutlineGlyph-Test.cpp │ ├── FTPixmapFont-Test.cpp │ ├── FTPixmapGlyph-Test.cpp │ ├── FTPoint-Test.cpp │ ├── FTPolygonFont-Test.cpp │ ├── FTPolygonGlyph-Test.cpp │ ├── FTSize-Test.cpp │ ├── FTTesselation-Test.cpp │ ├── FTTextureFont-Test.cpp │ ├── FTTextureGlyph-Test.cpp │ ├── FTVector-Test.cpp │ ├── FTVectoriser-Test.cpp │ ├── FTlayout-Test.cpp │ ├── Fontdefs.h │ ├── HPGCalc_afm.cpp │ ├── HPGCalc_pfb.cpp │ └── Makefile.am └── screenshots ├── demo.png ├── helloworld.png ├── layout.png ├── paras.png ├── performance.png └── unicode.png /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff -merge 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/.gitignore -------------------------------------------------------------------------------- /Demos/iOS/Common/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/Common/Resources/Default.png -------------------------------------------------------------------------------- /Demos/iOS/Common/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/Common/Resources/Icon-72.png -------------------------------------------------------------------------------- /Demos/iOS/Common/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/Common/Resources/Icon.png -------------------------------------------------------------------------------- /Demos/iOS/Common/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/Common/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Demos/iOS/Common/TextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/Common/TextureLoader.h -------------------------------------------------------------------------------- /Demos/iOS/Common/TextureLoader.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/Common/TextureLoader.mm -------------------------------------------------------------------------------- /Demos/iOS/Common/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/Common/ViewController.h -------------------------------------------------------------------------------- /Demos/iOS/Common/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/Common/ViewController.mm -------------------------------------------------------------------------------- /Demos/iOS/Common/ftgles.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/Common/ftgles.xcconfig -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/Classes/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/Classes/AppDelegate.mm -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/Classes/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/Classes/HelloWorld.cpp -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/Classes/HelloWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/Classes/HelloWorld.h -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/Classes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/Classes/main.m -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/Default-568h@2x.png -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/Fonts/Diavlo_BLACK_II_37.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/Fonts/Diavlo_BLACK_II_37.otf -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/Prefix.pch -------------------------------------------------------------------------------- /Demos/iOS/HelloWorld/ftgles-info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/HelloWorld/ftgles-info.plist -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/Classes/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/Classes/AppDelegate.mm -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/Classes/KeyboardDemoController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/Classes/KeyboardDemoController.cpp -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/Classes/KeyboardDemoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/Classes/KeyboardDemoController.h -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/Classes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/Classes/main.m -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/Fonts/BorisBlackBloxx.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/Fonts/BorisBlackBloxx.ttf -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/KeyboardDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/KeyboardDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/Prefix.pch -------------------------------------------------------------------------------- /Demos/iOS/KeyboardDemo/ftgles-info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/KeyboardDemo/ftgles-info.plist -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Classes/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Classes/AppDelegate.mm -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Classes/LayoutDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Classes/LayoutDemo.cpp -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Classes/LayoutDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Classes/LayoutDemo.h -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Classes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Classes/main.m -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Fonts/BorisBlackBloxx.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Fonts/BorisBlackBloxx.ttf -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Fonts/Cardo98s.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Fonts/Cardo98s.ttf -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Fonts/Charybdis.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Fonts/Diavlo_BLACK_II_37.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Fonts/Diavlo_BLACK_II_37.otf -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Fonts/Gartentika.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Fonts/Gartentika.ttf -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Fonts/RosewoodStd-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Fonts/RosewoodStd-Regular.otf -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Fonts/TOONISH.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Fonts/TOONISH.ttf -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Fonts/brown_bear_funk.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Fonts/brown_bear_funk.ttf -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/LayoutDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/LayoutDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/Prefix.pch -------------------------------------------------------------------------------- /Demos/iOS/LayoutDemo/ftgles-info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/LayoutDemo/ftgles-info.plist -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Classes/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Classes/AppDelegate.mm -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Classes/PerformanceController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Classes/PerformanceController.cpp -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Classes/PerformanceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Classes/PerformanceController.h -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Classes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Classes/main.m -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Default-568h@2x.png -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Fonts/BorisBlackBloxx.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Fonts/BorisBlackBloxx.ttf -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Fonts/Cardo98s.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Fonts/Cardo98s.ttf -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Fonts/Charybdis.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Fonts/Diavlo_BLACK_II_37.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Fonts/Diavlo_BLACK_II_37.otf -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Fonts/Gartentika.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Fonts/Gartentika.ttf -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Fonts/RosewoodStd-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Fonts/RosewoodStd-Regular.otf -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Fonts/TOONISH.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Fonts/TOONISH.ttf -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Fonts/brown_bear_funk.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Fonts/brown_bear_funk.ttf -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/PerformanceTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/PerformanceTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/Prefix.pch -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/ViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/ViewController_iPad.xib -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/ViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/ViewController_iPhone.xib -------------------------------------------------------------------------------- /Demos/iOS/PerformanceTest/ftgles-info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/PerformanceTest/ftgles-info.plist -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Classes/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Classes/AppDelegate.mm -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Classes/UnicodeDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Classes/UnicodeDemo.cpp -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Classes/UnicodeDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Classes/UnicodeDemo.h -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Classes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Classes/main.m -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/COPYING -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipag.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipag.ttf -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipagp.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipagp.ttf -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipagui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipagui.ttf -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipam.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipam.ttf -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipamp.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/openprinting-jp-0.1.3/ipamp.ttf -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-simplified-2004.06.05/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-simplified-2004.06.05/COPYING.txt -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-simplified-2004.06.05/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-simplified-2004.06.05/README.txt -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-simplified-2004.06.05/zh_cn.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-simplified-2004.06.05/zh_cn.ttf -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-traditional-2004.06.05/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-traditional-2004.06.05/COPYING.txt -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-traditional-2004.06.05/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-traditional-2004.06.05/README.txt -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-traditional-2004.06.05/zh_tw.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Fonts/tuxpaint-ttf-chinese-traditional-2004.06.05/zh_tw.ttf -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/Prefix.pch -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/UnicodeDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/UnicodeDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/iOS/UnicodeDemo/ftgles-info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Demos/iOS/UnicodeDemo/ftgles-info.plist -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/README.md -------------------------------------------------------------------------------- /TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/TUTORIAL.md -------------------------------------------------------------------------------- /Xcode/ftgles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Xcode/ftgles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Xcode/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/Xcode/install.sh -------------------------------------------------------------------------------- /ftgles/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/AUTHORS -------------------------------------------------------------------------------- /ftgles/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/BUGS -------------------------------------------------------------------------------- /ftgles/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/COPYING -------------------------------------------------------------------------------- /ftgles/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ftgles/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/INSTALL -------------------------------------------------------------------------------- /ftgles/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/Makefile.am -------------------------------------------------------------------------------- /ftgles/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/NEWS -------------------------------------------------------------------------------- /ftgles/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/README -------------------------------------------------------------------------------- /ftgles/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/TODO -------------------------------------------------------------------------------- /ftgles/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/autogen.sh -------------------------------------------------------------------------------- /ftgles/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/config.h.in -------------------------------------------------------------------------------- /ftgles/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/configure.ac -------------------------------------------------------------------------------- /ftgles/demo/FTGLDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/demo/FTGLDemo.cpp -------------------------------------------------------------------------------- /ftgles/demo/FTGLMFontDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/demo/FTGLMFontDemo.cpp -------------------------------------------------------------------------------- /ftgles/demo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/demo/Makefile.am -------------------------------------------------------------------------------- /ftgles/demo/c-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/demo/c-demo.c -------------------------------------------------------------------------------- /ftgles/demo/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/demo/simple.cpp -------------------------------------------------------------------------------- /ftgles/demo/tb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/demo/tb.c -------------------------------------------------------------------------------- /ftgles/demo/tb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/demo/tb.h -------------------------------------------------------------------------------- /ftgles/demo/trackball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/demo/trackball.c -------------------------------------------------------------------------------- /ftgles/demo/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/demo/trackball.h -------------------------------------------------------------------------------- /ftgles/docs/FTGL_1_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/FTGL_1_3.gif -------------------------------------------------------------------------------- /ftgles/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/Makefile -------------------------------------------------------------------------------- /ftgles/docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/Makefile.am -------------------------------------------------------------------------------- /ftgles/docs/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/doxygen.cfg -------------------------------------------------------------------------------- /ftgles/docs/faq.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/faq.dox -------------------------------------------------------------------------------- /ftgles/docs/ftgl.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/ftgl.dox -------------------------------------------------------------------------------- /ftgles/docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/images/logo.png -------------------------------------------------------------------------------- /ftgles/docs/images/metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/images/metrics.png -------------------------------------------------------------------------------- /ftgles/docs/images/metrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/images/metrics.svg -------------------------------------------------------------------------------- /ftgles/docs/images/rasterfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/images/rasterfont.png -------------------------------------------------------------------------------- /ftgles/docs/images/texturefont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/images/texturefont.png -------------------------------------------------------------------------------- /ftgles/docs/images/vectorfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/images/vectorfont.png -------------------------------------------------------------------------------- /ftgles/docs/projects_using_ftgl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/projects_using_ftgl.txt -------------------------------------------------------------------------------- /ftgles/docs/tutorial.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/docs/tutorial.dox -------------------------------------------------------------------------------- /ftgles/ftgles.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/ftgles.pc -------------------------------------------------------------------------------- /ftgles/msvc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/Makefile -------------------------------------------------------------------------------- /ftgles/msvc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/Makefile.am -------------------------------------------------------------------------------- /ftgles/msvc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/README.txt -------------------------------------------------------------------------------- /ftgles/msvc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/config.h -------------------------------------------------------------------------------- /ftgles/msvc/vc71/ftgl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc71/ftgl.sln -------------------------------------------------------------------------------- /ftgles/msvc/vc71/ftgl_dll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc71/ftgl_dll.vcproj -------------------------------------------------------------------------------- /ftgles/msvc/vc8/FTGLDemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc8/FTGLDemo.vcproj -------------------------------------------------------------------------------- /ftgles/msvc/vc8/SimpleDemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc8/SimpleDemo.vcproj -------------------------------------------------------------------------------- /ftgles/msvc/vc8/ftgl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc8/ftgl.sln -------------------------------------------------------------------------------- /ftgles/msvc/vc8/ftgl_demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc8/ftgl_demo.sln -------------------------------------------------------------------------------- /ftgles/msvc/vc8/ftgl_dll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc8/ftgl_dll.vcproj -------------------------------------------------------------------------------- /ftgles/msvc/vc8/ftgl_static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc8/ftgl_static.vcproj -------------------------------------------------------------------------------- /ftgles/msvc/vc8/trackball.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc8/trackball.vcproj -------------------------------------------------------------------------------- /ftgles/msvc/vc8/unit_tests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/msvc/vc8/unit_tests.vcproj -------------------------------------------------------------------------------- /ftgles/src/FTBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTBuffer.cpp -------------------------------------------------------------------------------- /ftgles/src/FTCharToGlyphIndexMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTCharToGlyphIndexMap.h -------------------------------------------------------------------------------- /ftgles/src/FTCharmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTCharmap.cpp -------------------------------------------------------------------------------- /ftgles/src/FTCharmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTCharmap.h -------------------------------------------------------------------------------- /ftgles/src/FTContour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTContour.cpp -------------------------------------------------------------------------------- /ftgles/src/FTContour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTContour.h -------------------------------------------------------------------------------- /ftgles/src/FTFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFace.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFace.h -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTBitmapFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTBitmapFont.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTBitmapFontImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTBitmapFontImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTBufferFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTBufferFont.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTBufferFontImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTBufferFontImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTExtrudeFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTExtrudeFont.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTExtrudeFontImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTExtrudeFontImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTFont.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTFontGlue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTFontGlue.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTFontImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTFontImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTOutlineFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTOutlineFont.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTOutlineFontImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTOutlineFontImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTPixmapFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTPixmapFont.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTPixmapFontImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTPixmapFontImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTPolygonFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTPolygonFont.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTPolygonFontImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTPolygonFontImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTTextureFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTTextureFont.cpp -------------------------------------------------------------------------------- /ftgles/src/FTFont/FTTextureFontImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTFont/FTTextureFontImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTBBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTBBox.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTBitmapGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTBitmapGlyph.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTBuffer.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTBufferFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTBufferFont.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTBufferGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTBufferGlyph.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTExtrdGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTExtrdGlyph.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTFont.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTGLBitmapFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTGLBitmapFont.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTGLExtrdFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTGLExtrdFont.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTGLOutlineFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTGLOutlineFont.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTGLPixmapFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTGLPixmapFont.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTGLPolygonFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTGLPolygonFont.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTGLTextureFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTGLTextureFont.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTGlyph.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTLayout.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTOutlineGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTOutlineGlyph.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTPixmapGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTPixmapGlyph.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTPoint.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTPolyGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTPolyGlyph.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTSimpleLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTSimpleLayout.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/FTTextureGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/FTTextureGlyph.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/ftgles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/ftgles.h -------------------------------------------------------------------------------- /ftgles/src/FTGL/ftglesGlue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/ftglesGlue.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGL/ftglesGlue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGL/ftglesGlue.h -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTBitmapGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTBitmapGlyph.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTBitmapGlyphImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTBitmapGlyphImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTBufferGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTBufferGlyph.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTBufferGlyphImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTBufferGlyphImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTExtrudeGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTExtrudeGlyph.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTExtrudeGlyphImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTExtrudeGlyphImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTGlyph.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTGlyphGlue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTGlyphGlue.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTGlyphImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTGlyphImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTOutlineGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTOutlineGlyph.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTOutlineGlyphImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTOutlineGlyphImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTPixmapGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTPixmapGlyph.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTPixmapGlyphImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTPixmapGlyphImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTPolygonGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTPolygonGlyph.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTPolygonGlyphImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTPolygonGlyphImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTTextureGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTTextureGlyph.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyph/FTTextureGlyphImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyph/FTTextureGlyphImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTGlyphContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyphContainer.cpp -------------------------------------------------------------------------------- /ftgles/src/FTGlyphContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTGlyphContainer.h -------------------------------------------------------------------------------- /ftgles/src/FTInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTInternals.h -------------------------------------------------------------------------------- /ftgles/src/FTLayout/FTLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTLayout/FTLayout.cpp -------------------------------------------------------------------------------- /ftgles/src/FTLayout/FTLayoutGlue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTLayout/FTLayoutGlue.cpp -------------------------------------------------------------------------------- /ftgles/src/FTLayout/FTLayoutImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTLayout/FTLayoutImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTLayout/FTSimpleLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTLayout/FTSimpleLayout.cpp -------------------------------------------------------------------------------- /ftgles/src/FTLayout/FTSimpleLayoutImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTLayout/FTSimpleLayoutImpl.h -------------------------------------------------------------------------------- /ftgles/src/FTLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTLibrary.cpp -------------------------------------------------------------------------------- /ftgles/src/FTLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTLibrary.h -------------------------------------------------------------------------------- /ftgles/src/FTList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTList.h -------------------------------------------------------------------------------- /ftgles/src/FTPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTPoint.cpp -------------------------------------------------------------------------------- /ftgles/src/FTSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTSize.cpp -------------------------------------------------------------------------------- /ftgles/src/FTSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTSize.h -------------------------------------------------------------------------------- /ftgles/src/FTUnicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTUnicode.h -------------------------------------------------------------------------------- /ftgles/src/FTVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTVector.h -------------------------------------------------------------------------------- /ftgles/src/FTVectoriser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTVectoriser.cpp -------------------------------------------------------------------------------- /ftgles/src/FTVectoriser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/FTVectoriser.h -------------------------------------------------------------------------------- /ftgles/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/Makefile.am -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/README -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/configs/darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/configs/darwin -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/configs/darwin-iphone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/configs/darwin-iphone -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/configs/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/configs/default -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/include/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/include/glu.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/include/gluos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/include/gluos.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/README -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/alg-outline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/alg-outline -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/dict-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/dict-list.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/dict.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/dict.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/geom.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/geom.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/memalloc.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/memalloc.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/mesh.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/mesh.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/normal.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/normal.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/priorityq-heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/priorityq-heap.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/priorityq-heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/priorityq-heap.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/priorityq-sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/priorityq-sort.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/priorityq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/priorityq.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/priorityq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/priorityq.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/render.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/render.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/sweep.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/sweep.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/tess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/tess.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/tess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/tess.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/tessmono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/tessmono.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libtess/tessmono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libtess/tessmono.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libutil/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libutil/error.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libutil/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libutil/glue.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libutil/gluint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libutil/gluint.h -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libutil/project.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libutil/project.c -------------------------------------------------------------------------------- /ftgles/src/iGLU-1.0.0/libutil/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/src/iGLU-1.0.0/libutil/registry.c -------------------------------------------------------------------------------- /ftgles/test/CTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/CTest.c -------------------------------------------------------------------------------- /ftgles/test/CXXTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/CXXTest.cpp -------------------------------------------------------------------------------- /ftgles/test/FTBBox-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTBBox-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTBitmapFont-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTBitmapFont-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTBitmapGlyph-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTBitmapGlyph-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTCharToGlyphIndexMap-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTCharToGlyphIndexMap-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTCharmap-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTCharmap-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTContour-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTContour-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTExtrudeFont-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTExtrudeFont-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTExtrudeGlyph-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTExtrudeGlyph-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTFace-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTFace-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTFont-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTFont-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTGlyph-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTGlyph-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTGlyphContainer-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTGlyphContainer-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTLibrary-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTLibrary-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTList-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTList-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTMesh-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTMesh-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTOutlineFont-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTOutlineFont-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTOutlineGlyph-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTOutlineGlyph-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTPixmapFont-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTPixmapFont-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTPixmapGlyph-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTPixmapGlyph-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTPoint-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTPoint-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTPolygonFont-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTPolygonFont-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTPolygonGlyph-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTPolygonGlyph-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTSize-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTSize-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTTesselation-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTTesselation-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTTextureFont-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTTextureFont-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTTextureGlyph-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTTextureGlyph-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTVector-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTVector-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTVectoriser-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTVectoriser-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/FTlayout-Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/FTlayout-Test.cpp -------------------------------------------------------------------------------- /ftgles/test/Fontdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/Fontdefs.h -------------------------------------------------------------------------------- /ftgles/test/HPGCalc_afm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/HPGCalc_afm.cpp -------------------------------------------------------------------------------- /ftgles/test/HPGCalc_pfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/HPGCalc_pfb.cpp -------------------------------------------------------------------------------- /ftgles/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/ftgles/test/Makefile.am -------------------------------------------------------------------------------- /screenshots/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/screenshots/demo.png -------------------------------------------------------------------------------- /screenshots/helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/screenshots/helloworld.png -------------------------------------------------------------------------------- /screenshots/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/screenshots/layout.png -------------------------------------------------------------------------------- /screenshots/paras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/screenshots/paras.png -------------------------------------------------------------------------------- /screenshots/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/screenshots/performance.png -------------------------------------------------------------------------------- /screenshots/unicode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdave1/ftgles/HEAD/screenshots/unicode.png --------------------------------------------------------------------------------