egui/demo_web/src/lib.rs

19 lines
622 B
Rust
Raw Normal View History

#![forbid(unsafe_code)]
2019-02-09 22:00:07 +00:00
#![deny(warnings)]
2020-05-10 17:04:10 +00:00
#![warn(clippy::all)]
2019-02-09 22:00:07 +00:00
use wasm_bindgen::prelude::*;
2020-04-12 10:07:51 +00:00
/// This is the entry-point for all the web-assembly.
2020-11-17 22:24:14 +00:00
/// This is called once from the HTML.
/// It loads the app, installs some callbacks, then returns.
/// You can add more callbacks like this if you want to call in to your code.
#[wasm_bindgen]
2020-07-18 22:44:06 +00:00
pub fn start(canvas_id: &str) -> Result<(), wasm_bindgen::JsValue> {
2020-11-17 22:24:14 +00:00
let app = egui::DemoApp::default();
let backend = egui_web::WebBackend::new(canvas_id)?;
2020-11-17 22:24:14 +00:00
let runner = egui_web::AppRunner::new(backend, Box::new(app))?;
egui_web::start(runner)?;
Ok(())
}