1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2021 the Parley Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

use fontique::Collection;

#[cfg(feature = "std")]
use fontique::SourceCache;

#[derive(Default)]
pub struct FontContext {
    pub collection: Collection,
    #[cfg(feature = "std")]
    pub source_cache: SourceCache,
}