1#[cfg(feature = "mocked-engine")]
2mod mocked;
3
4#[cfg(feature = "skia-engine")]
5mod skia;
6
7pub mod prelude {
8 mod source {
9 #[cfg(all(feature = "mocked-engine", not(feature = "skia-engine")))]
10 pub use crate::mocked::*;
11 #[cfg(feature = "skia-engine")]
12 pub use crate::skia::*;
13 }
14
15 pub use source::{
16 ArcSize as SkArcSize,
17 BlurStyle as SkBlurStyle,
18 Color as SkColor,
19 Color4f as SkColor4f,
20 Corner as SkCorner,
21 Data as SkData,
22 Image as SkImage,
23 MaskFilter as SkMaskFilter,
24 Matrix as SkMatrix,
25 Paragraph as SkParagraph,
26 Path as SkPath,
27 PathFillType as SkPathFillType,
28 Point as SkPoint,
29 RGB as SkRGB,
30 RRect as SkRRect,
31 Rect as SkRect,
32 Surface as SkSurface,
33 TextAlign as SkTextAlign,
34 TextHeightBehavior as SkTextHeightBehavior,
35 TextShadow as SkTextShadow,
36 *,
37 };
38}