canvas/
lib.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5#![deny(unsafe_code)]
6
7mod backend;
8
9#[cfg(any(feature = "vello", feature = "vello_cpu"))]
10mod peniko_conversions;
11
12#[cfg(feature = "vello")]
13mod vello_backend;
14
15#[cfg(feature = "vello_cpu")]
16mod vello_cpu_backend;
17
18pub mod canvas_data;
19pub mod canvas_paint_thread;