mirror of
https://github.com/servo/servo.git
synced 2025-09-22 21:00:14 +01:00
Mostly it's just reusing/copy&edit fillText stuff. Testing: Existing WPT tests Fixes: #29973 Try run: https://github.com/sagudev/servo/actions/runs/17511337550 --------- Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
20 lines
511 B
Rust
20 lines
511 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)]
|
|
#![allow(clippy::too_many_arguments)]
|
|
|
|
mod backend;
|
|
|
|
#[cfg(any(feature = "vello", feature = "vello_cpu"))]
|
|
mod peniko_conversions;
|
|
|
|
#[cfg(feature = "vello")]
|
|
mod vello_backend;
|
|
|
|
#[cfg(feature = "vello_cpu")]
|
|
mod vello_cpu_backend;
|
|
|
|
pub mod canvas_data;
|
|
pub mod canvas_paint_thread;
|