2019-08-14 18:20:05 +10:00
|
|
|
#![cfg(target_arch = "wasm32")]
|
|
|
|
|
2019-09-25 09:33:32 +10:00
|
|
|
//! The web target does not automatically insert the canvas element object into the web page, to
|
|
|
|
//! allow end users to determine how the page should be laid out. Use the `WindowExtStdweb` or
|
|
|
|
//! `WindowExtWebSys` traits (depending on your web backend) to retrieve the canvas from the
|
|
|
|
//! Window.
|
|
|
|
|
2019-07-02 04:43:54 +10:00
|
|
|
#[cfg(feature = "stdweb")]
|
2019-06-25 11:15:34 +10:00
|
|
|
use stdweb::web::html_element::CanvasElement;
|
|
|
|
|
2019-07-02 04:43:54 +10:00
|
|
|
#[cfg(feature = "stdweb")]
|
2019-06-25 11:15:34 +10:00
|
|
|
pub trait WindowExtStdweb {
|
|
|
|
fn canvas(&self) -> CanvasElement;
|
|
|
|
}
|
|
|
|
|
2019-07-02 04:43:54 +10:00
|
|
|
#[cfg(feature = "web-sys")]
|
2019-06-25 11:15:34 +10:00
|
|
|
use web_sys::HtmlCanvasElement;
|
|
|
|
|
2019-07-02 04:43:54 +10:00
|
|
|
#[cfg(feature = "web-sys")]
|
2019-06-25 11:15:34 +10:00
|
|
|
pub trait WindowExtWebSys {
|
|
|
|
fn canvas(&self) -> HtmlCanvasElement;
|
|
|
|
}
|