wasm-bus-webgl

Crates.iowasm-bus-webgl
lib.rswasm-bus-webgl
version1.0.3
sourcesrc
created_at2022-03-26 21:24:28.188924
updated_at2022-03-26 23:03:43.891175
descriptionWebAssembly WebGL Interface
homepage
repositoryhttps://github.com/john-sharratt/ate
max_upload_size
id556976
size56,635
Wasmer Core (github:wasmerio:wasmer-core)

documentation

README

WASM WebGL

The WASM Bus for using WebGL on tokera.sh

Example

use wasm_bus_webgl::prelude::*;

fn main() -> Result<(), WebGlError> {
    let context = WebGl::new()?;

    context.clear_color(0.0, 0.0, 0.4, 1.0);
    context.clear(BufferBit::Color);

    std::thread::sleep(std::time::Duration::from_secs(4));

    Ok(())
}

Testing

You can test your WASI program by uploading it to wapm.io and then heading over to the Tokera Shell

https://tokera.sh

Commit count: 2187

cargo fmt