deft_font_kit/loaders/mod.rs
1// font-kit/src/loaders/mod.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//! The different system services that can load and rasterize fonts.
12
13#[cfg(target_os = "windows")]
14pub mod directwrite;
15#[cfg(target_os = "windows")]
16pub use crate::loaders::directwrite as default;
17
18#[cfg(not(target_os = "windows"))]
19pub mod freetype;
20#[cfg(not(target_os = "windows"))]
21pub use crate::loaders::freetype as default;