| 1 | // font-kit/src/font.rs |
| 2 | // |
| 3 | // Copyright © 2018 The Pathfinder Project Developers. |
| 4 | // |
| 5 | // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | // option. This file may not be copied, modified, or distributed |
| 9 | // except according to those terms. |
| 10 | |
| 11 | //! A font face loaded into memory. |
| 12 | //! |
| 13 | //! The Font type in this crate represents the default loader. |
| 14 | |
| 15 | pub use crate::loaders::default::Font; |
| 16 | |