├── .gitattributes ├── .github ├── FUNDING.yml ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-MIT ├── LICENSE.freetype ├── README.md ├── examples ├── assets │ ├── FiraSans-Regular.ttf │ └── LICENSE ├── glyph-to-svg.zig └── single-glyph.zig └── src ├── assets ├── FiraSans-Regular.ttf └── LICENSE ├── freetype.zig └── harfbuzz.zig /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | upstream/** linguist-vendored 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: emidoots 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE.freetype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/LICENSE.freetype -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/README.md -------------------------------------------------------------------------------- /examples/assets/FiraSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/examples/assets/FiraSans-Regular.ttf -------------------------------------------------------------------------------- /examples/assets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/examples/assets/LICENSE -------------------------------------------------------------------------------- /examples/glyph-to-svg.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/examples/glyph-to-svg.zig -------------------------------------------------------------------------------- /examples/single-glyph.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/examples/single-glyph.zig -------------------------------------------------------------------------------- /src/assets/FiraSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/src/assets/FiraSans-Regular.ttf -------------------------------------------------------------------------------- /src/assets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/src/assets/LICENSE -------------------------------------------------------------------------------- /src/freetype.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/src/freetype.zig -------------------------------------------------------------------------------- /src/harfbuzz.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/mach-freetype/HEAD/src/harfbuzz.zig --------------------------------------------------------------------------------