1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
mod brush;
mod context;
pub mod d2d;
pub mod d3d11;
pub mod d3d12;
mod error;
mod image;
mod path;
mod shape;
mod stroke_style;
mod text;
mod utility;

pub use brush::*;
pub use context::*;
pub use d2d::Direct2D;
pub use d3d11::Direct3D11;
pub use d3d12::Direct3D12;
pub use error::*;
pub use image::*;
pub use path::*;
pub use shape::*;
pub use stroke_style::*;
pub use text::*;
pub use utility::*;

pub type RenderTarget<T> = <T as Backend>::RenderTarget;