mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 23:08:05 +08:00
* Remove surface and window from ApplicationIo * Seperate Wasm and Native ApplicationIo * Fix warnings * Fix tests * Remove redundant PlatformApplicationIo::new_offscreen * Fixup * Remove unused From implementaitions for ApplicationIo
9 lines
300 B
Rust
9 lines
300 B
Rust
//! A collection of utilities for working with HTML canvases.
|
|
//! This library is designed to be used in a WebAssembly context.
|
|
//! It doesn't expose any functionality when compiled for non-WebAssembly targets
|
|
|
|
#[cfg(target_family = "wasm")]
|
|
mod wasm;
|
|
#[cfg(target_family = "wasm")]
|
|
pub use wasm::*;
|