├── .gitignore ├── LICENSE ├── Makefile ├── base ├── consts.h ├── font.c ├── font.h └── types.h ├── config.mk ├── glyph ├── glyph.c ├── glyph.h ├── outline.c └── outline.h ├── main.c ├── parse ├── parse.c └── parse.h ├── raster ├── bitmap.c ├── bitmap.h ├── config.h ├── raster.c ├── raster.h ├── scale.c ├── scale.h ├── scan.c └── scan.h ├── tables ├── tables.c └── tables.h ├── ttf.h └── utils ├── utils.c └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/Makefile -------------------------------------------------------------------------------- /base/consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/base/consts.h -------------------------------------------------------------------------------- /base/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/base/font.c -------------------------------------------------------------------------------- /base/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/base/font.h -------------------------------------------------------------------------------- /base/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/base/types.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/config.mk -------------------------------------------------------------------------------- /glyph/glyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/glyph/glyph.c -------------------------------------------------------------------------------- /glyph/glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/glyph/glyph.h -------------------------------------------------------------------------------- /glyph/outline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/glyph/outline.c -------------------------------------------------------------------------------- /glyph/outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/glyph/outline.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/main.c -------------------------------------------------------------------------------- /parse/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/parse/parse.c -------------------------------------------------------------------------------- /parse/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/parse/parse.h -------------------------------------------------------------------------------- /raster/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/raster/bitmap.c -------------------------------------------------------------------------------- /raster/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/raster/bitmap.h -------------------------------------------------------------------------------- /raster/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/raster/config.h -------------------------------------------------------------------------------- /raster/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/raster/raster.c -------------------------------------------------------------------------------- /raster/raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/raster/raster.h -------------------------------------------------------------------------------- /raster/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/raster/scale.c -------------------------------------------------------------------------------- /raster/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/raster/scale.h -------------------------------------------------------------------------------- /raster/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/raster/scan.c -------------------------------------------------------------------------------- /raster/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/raster/scan.h -------------------------------------------------------------------------------- /tables/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/tables/tables.c -------------------------------------------------------------------------------- /tables/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/tables/tables.h -------------------------------------------------------------------------------- /ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/ttf.h -------------------------------------------------------------------------------- /utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/utils/utils.c -------------------------------------------------------------------------------- /utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dluco/ttf/HEAD/utils/utils.h --------------------------------------------------------------------------------