summaryrefslogtreecommitdiffstats
path: root/examples/integration_wgpu/README.md
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-02-24 20:52:10 +0100
committerLibravatar GitHub <noreply@github.com>2023-02-24 20:52:10 +0100
commit368cadd25a8b57ee5c41e45d1abe8d1dfb194c69 (patch)
tree191cb7cc7807a5fe513b3d485b2fda21d3bf0bde /examples/integration_wgpu/README.md
parent573d27eb52bbfacf1b06983b4282f00eb5265bdc (diff)
parent8059c40142d601588e01c152ce1bb72a1295dde8 (diff)
downloadiced-368cadd25a8b57ee5c41e45d1abe8d1dfb194c69.tar.gz
iced-368cadd25a8b57ee5c41e45d1abe8d1dfb194c69.tar.bz2
iced-368cadd25a8b57ee5c41e45d1abe8d1dfb194c69.zip
Merge pull request #1697 from iced-rs/text-glyphon
Text shaping, font fallback, and `iced_wgpu` overhaul
Diffstat (limited to 'examples/integration_wgpu/README.md')
-rw-r--r--examples/integration_wgpu/README.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/examples/integration_wgpu/README.md b/examples/integration_wgpu/README.md
deleted file mode 100644
index ece9ba1e..00000000
--- a/examples/integration_wgpu/README.md
+++ /dev/null
@@ -1,36 +0,0 @@
-## `wgpu` integration
-
-A demonstration of how to integrate Iced in an existing [`wgpu`] application.
-
-The __[`main`]__ file contains all the code of the example.
-
-<div align="center">
- <a href="https://gfycat.com/nicemediocrekodiakbear">
- <img src="https://thumbs.gfycat.com/NiceMediocreKodiakbear-small.gif">
- </a>
-</div>
-
-You can run it with `cargo run`:
-```
-cargo run --package integration_wgpu
-```
-
-### How to run this example with WebGL backend
-NOTE: Currently, WebGL backend is is still experimental, so expect bugs.
-
-```sh
-# 0. Install prerequisites
-cargo install wasm-bindgen-cli https
-# 1. cd to the current folder
-# 2. Compile wasm module
-cargo build -p integration_wgpu --target wasm32-unknown-unknown
-# 3. Invoke wasm-bindgen
-wasm-bindgen ../../target/wasm32-unknown-unknown/debug/integration_wgpu.wasm --out-dir . --target web --no-typescript
-# 4. run http server
-http
-# 5. Open 127.0.0.1:8000 in browser
-```
-
-
-[`main`]: src/main.rs
-[`wgpu`]: https://github.com/gfx-rs/wgpu