mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
This is a small cleanup that moves and renames this class. The rename is simply because we are exposing a lot about the details of Servo's rendering in the API and it makes sense to start thinking about abstracting that away a bit. This also moves the struct to `gfx`, which does have an effect on Servo's dependency graph. This adds a new dependency on gfx to `compositing`, but `compositing` had a transitive dependency on gfx before through `canvas`.
14 lines
393 B
Rust
14 lines
393 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
pub mod font;
|
|
pub mod font_cache_thread;
|
|
pub mod font_context;
|
|
pub mod font_template;
|
|
#[allow(unsafe_code)]
|
|
mod platform;
|
|
pub mod rendering_context;
|
|
pub mod text;
|