15 lines
376 B
Rust
15 lines
376 B
Rust
//! Skia imaging adapter corresponding to `LibreMetaverse.Imaging.Skia`.
|
|
|
|
extern crate self as libremetaverse_imaging_skia;
|
|
|
|
pub mod backend {
|
|
/// Project-owned bitmap boundary; no `SkiaSharp` API is copied.
|
|
pub struct SKBitmap;
|
|
}
|
|
|
|
mod generated;
|
|
|
|
pub use generated::*;
|
|
pub use libremetaverse_imaging as imaging;
|
|
pub use libremetaverse_types::NotImplemented as Error;
|