├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── assets │ ├── FiraSans-Regular.ttf │ └── LICENSE ├── glyph_outline.rs └── single_glyph.rs └── src ├── bitmap.rs ├── bitmap_glyph.rs ├── charmap.rs ├── error.rs ├── face.rs ├── glyph.rs ├── glyph_slot.rs ├── lib.rs ├── library.rs ├── outline.rs ├── render_mode.rs ├── stroker.rs ├── tt_os2.rs └── tt_postscript.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: rust 2 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/assets/FiraSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/examples/assets/FiraSans-Regular.ttf -------------------------------------------------------------------------------- /examples/assets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/examples/assets/LICENSE -------------------------------------------------------------------------------- /examples/glyph_outline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/examples/glyph_outline.rs -------------------------------------------------------------------------------- /examples/single_glyph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/examples/single_glyph.rs -------------------------------------------------------------------------------- /src/bitmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/bitmap.rs -------------------------------------------------------------------------------- /src/bitmap_glyph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/bitmap_glyph.rs -------------------------------------------------------------------------------- /src/charmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/charmap.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/face.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/face.rs -------------------------------------------------------------------------------- /src/glyph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/glyph.rs -------------------------------------------------------------------------------- /src/glyph_slot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/glyph_slot.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/library.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/library.rs -------------------------------------------------------------------------------- /src/outline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/outline.rs -------------------------------------------------------------------------------- /src/render_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/render_mode.rs -------------------------------------------------------------------------------- /src/stroker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/stroker.rs -------------------------------------------------------------------------------- /src/tt_os2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/tt_os2.rs -------------------------------------------------------------------------------- /src/tt_postscript.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/freetype-rs/HEAD/src/tt_postscript.rs --------------------------------------------------------------------------------