├── .gitignore ├── LICENSE ├── README.md ├── libs ├── bzip2 │ ├── LICENSE │ ├── includes │ │ ├── .DS_Store │ │ └── bzlib.h │ └── lib │ │ └── osx │ │ └── libbz2.a ├── freetype2 │ ├── LICENSE.TXT │ ├── includes │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftautoh.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftcffdrv.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── ftttdrv.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ ├── tttags.h │ │ │ └── ttunpat.h │ │ └── ft2build.h │ └── lib │ │ └── osx │ │ └── libfreetype.a ├── harfbuzz │ ├── COPYING │ ├── includes │ │ ├── hb-blob.h │ │ ├── hb-buffer.h │ │ ├── hb-common.h │ │ ├── hb-coretext.h │ │ ├── hb-deprecated.h │ │ ├── hb-face.h │ │ ├── hb-font.h │ │ ├── hb-ft.h │ │ ├── hb-glib.h │ │ ├── hb-gobject-enums.h │ │ ├── hb-gobject-structs.h │ │ ├── hb-gobject.h │ │ ├── hb-icu.h │ │ ├── hb-ot-font.h │ │ ├── hb-ot-layout.h │ │ ├── hb-ot-shape.h │ │ ├── hb-ot-tag.h │ │ ├── hb-ot.h │ │ ├── hb-set.h │ │ ├── hb-shape-plan.h │ │ ├── hb-shape.h │ │ ├── hb-unicode.h │ │ ├── hb-version.h │ │ └── hb.h │ └── lib │ │ └── osx │ │ └── libharfbuzz.a └── libpng │ ├── LICENSE │ ├── includes │ ├── png.h │ ├── pngconf.h │ └── pnglibconf.h │ └── lib │ └── osx │ └── libpng.a ├── ofxaddons_thumbnail.png └── src ├── ofxFT2Font.cpp ├── ofxFT2Font.hpp ├── ofxMixedFont.cpp ├── ofxMixedFont.hpp ├── ofxMixedFontUtil.cpp └── ofxMixedFontUtil.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/README.md -------------------------------------------------------------------------------- /libs/bzip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/bzip2/LICENSE -------------------------------------------------------------------------------- /libs/bzip2/includes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/bzip2/includes/.DS_Store -------------------------------------------------------------------------------- /libs/bzip2/includes/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/bzip2/includes/bzlib.h -------------------------------------------------------------------------------- /libs/bzip2/lib/osx/libbz2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/bzip2/lib/osx/libbz2.a -------------------------------------------------------------------------------- /libs/freetype2/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/LICENSE.TXT -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/config/ftheader.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/config/ftoption.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/freetype.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftadvanc.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftautoh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftautoh.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftbbox.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftbdf.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftbitmap.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftbzip2.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftcache.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftcffdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftcffdrv.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftchapters.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftcid.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/fterrdef.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/fterrors.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftgasp.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftglyph.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftgxval.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftgzip.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftimage.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftincrem.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftlist.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftlzw.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftmac.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftmm.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftmodapi.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftmoderr.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftotval.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftoutln.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftpfr.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftrender.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftsizes.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftsnames.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftstroke.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftsynth.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftsystem.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/fttrigon.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftttdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftttdrv.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/fttypes.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/t1tables.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ttnameid.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/tttables.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/tttags.h -------------------------------------------------------------------------------- /libs/freetype2/includes/freetype/ttunpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/freetype/ttunpat.h -------------------------------------------------------------------------------- /libs/freetype2/includes/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/includes/ft2build.h -------------------------------------------------------------------------------- /libs/freetype2/lib/osx/libfreetype.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/freetype2/lib/osx/libfreetype.a -------------------------------------------------------------------------------- /libs/harfbuzz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/COPYING -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-blob.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-buffer.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-common.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-coretext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-coretext.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-deprecated.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-face.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-font.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-ft.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-glib.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-gobject-enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-gobject-enums.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-gobject-structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-gobject-structs.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-gobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-gobject.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-icu.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-ot-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-ot-font.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-ot-layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-ot-layout.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-ot-shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-ot-shape.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-ot-tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-ot-tag.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-ot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-ot.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-set.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-shape-plan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-shape-plan.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-shape.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-unicode.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb-version.h -------------------------------------------------------------------------------- /libs/harfbuzz/includes/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/includes/hb.h -------------------------------------------------------------------------------- /libs/harfbuzz/lib/osx/libharfbuzz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/harfbuzz/lib/osx/libharfbuzz.a -------------------------------------------------------------------------------- /libs/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/libpng/LICENSE -------------------------------------------------------------------------------- /libs/libpng/includes/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/libpng/includes/png.h -------------------------------------------------------------------------------- /libs/libpng/includes/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/libpng/includes/pngconf.h -------------------------------------------------------------------------------- /libs/libpng/includes/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/libpng/includes/pnglibconf.h -------------------------------------------------------------------------------- /libs/libpng/lib/osx/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/libs/libpng/lib/osx/libpng.a -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/ofxFT2Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/src/ofxFT2Font.cpp -------------------------------------------------------------------------------- /src/ofxFT2Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/src/ofxFT2Font.hpp -------------------------------------------------------------------------------- /src/ofxMixedFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/src/ofxMixedFont.cpp -------------------------------------------------------------------------------- /src/ofxMixedFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/src/ofxMixedFont.hpp -------------------------------------------------------------------------------- /src/ofxMixedFontUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/src/ofxMixedFontUtil.cpp -------------------------------------------------------------------------------- /src/ofxMixedFontUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironishihara/ofxMixedFont/HEAD/src/ofxMixedFontUtil.hpp --------------------------------------------------------------------------------