pixels/examples/minimal-web
Jay Oster 881033c5c7
Remove the exposed web feature (#304)
- The `web` feature was previously exposed by the example crate. This isn't really necessary.
- See #276 for discussion
2022-08-19 14:00:54 -07:00
..
src Allow accessing frame on immutable buffer (#288) 2022-08-14 15:44:23 -07:00
Cargo.toml Remove the exposed web feature (#304) 2022-08-19 14:00:54 -07:00
index.html Initial WebGL2 support. (#218) 2021-11-16 11:37:56 -08:00
README.md Initial WebGL2 support. (#218) 2021-11-16 11:37:56 -08:00

Hello Pixels + Web

Hello Pixels + Web

Minimal example for WebGL2.

Install build dependencies

Install the WASM32 target and a few CLI tools:

rustup target add wasm32-unknown-unknown
cargo install --locked wasm-bindgen-cli just miniserve

Running on the Web

Build the project and start a local server to host it:

just serve minimal-web

Open http://localhost:8080/ in your browser to run the example.

To build the project without serving it:

just build minimal-web

The build files are stored in ./target/minimal-web/.

Running on native targets

cargo run --release --package minimal-web

About

This example is based on minimal-winit, demonstrating how to build your app for WebGL2 targets.