Skip to content
Snippets Groups Projects
Unverified Commit 9aaf2d01 authored by databasedav's avatar databasedav Committed by GitHub
Browse files

use webgl2 by default, with optional webgpu feature, which is what bevy does (#163)

parent 776605d5
No related branches found
No related tags found
No related merge requests found
...@@ -3832,9 +3832,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" ...@@ -3832,9 +3832,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]] [[package]]
name = "wasm-bindgen" name = "wasm-bindgen"
version = "0.2.93" version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"once_cell", "once_cell",
...@@ -3843,9 +3843,9 @@ dependencies = [ ...@@ -3843,9 +3843,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-backend" name = "wasm-bindgen-backend"
version = "0.2.93" version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
dependencies = [ dependencies = [
"bumpalo", "bumpalo",
"log", "log",
...@@ -3870,9 +3870,9 @@ dependencies = [ ...@@ -3870,9 +3870,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-macro" name = "wasm-bindgen-macro"
version = "0.2.93" version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
dependencies = [ dependencies = [
"quote", "quote",
"wasm-bindgen-macro-support", "wasm-bindgen-macro-support",
...@@ -3880,9 +3880,9 @@ dependencies = [ ...@@ -3880,9 +3880,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-macro-support" name = "wasm-bindgen-macro-support"
version = "0.2.93" version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
...@@ -3893,9 +3893,9 @@ dependencies = [ ...@@ -3893,9 +3893,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-shared" name = "wasm-bindgen-shared"
version = "0.2.93" version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
[[package]] [[package]]
name = "web-sys" name = "web-sys"
......
...@@ -14,6 +14,7 @@ exclude = ["assets/*"] ...@@ -14,6 +14,7 @@ exclude = ["assets/*"]
## Enable to avoid panicing when multiple cameras are used in the same world ## Enable to avoid panicing when multiple cameras are used in the same world
## Requires you to add `CosmicPrimaryCamera` marker component to the primary camera ## Requires you to add `CosmicPrimaryCamera` marker component to the primary camera
multicam = [] multicam = []
webgpu = ["bevy/webgpu"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
...@@ -29,7 +30,7 @@ bevy = { version = "0.14", default-features = false, features = [ ...@@ -29,7 +30,7 @@ bevy = { version = "0.14", default-features = false, features = [
"bevy_winit", "bevy_winit",
"png", "png",
"x11", "x11",
"webgpu", "webgl2",
] } ] }
cosmic-text = { version = "0.12.0" } cosmic-text = { version = "0.12.0" }
# TODO: move crossbeam to wasm32, once input.rs has separate wasm copy/paste fn # TODO: move crossbeam to wasm32, once input.rs has separate wasm copy/paste fn
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment