remove winit from hello-compute example (#4699)

This commit is contained in:
Vrishabh 2023-11-16 18:38:57 +05:30 committed by GitHub
parent b7dd59e1dc
commit c12c377f09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -65,6 +65,10 @@ Bottom level categories:
- When evaluating const-expressions and generating SPIR-V, properly handle `Compose` expressions whose operands are `Splat` expressions. Such expressions are created and marked as constant by the constant evaluator. By @jimblandy in [#4695](https://github.com/gfx-rs/wgpu/pull/4695).
### Examples
- remove winit dependency from hello-compute example by @psvri in [#4699](https://github.com/gfx-rs/wgpu/pull/4699)
## v0.18.1 (2023-11-15)
(naga version 0.14.1)

1
Cargo.lock generated
View File

@ -4222,7 +4222,6 @@ dependencies = [
"wasm-bindgen-test",
"wgpu",
"wgpu-test",
"winit 0.29.3",
]
[[package]]

View File

@ -17,7 +17,6 @@ env_logger.workspace = true
flume.workspace = true
pollster.workspace = true
wgpu.workspace = true
winit.workspace = true
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook.workspace = true