From 944a568eb95c0dac3d30029e7cba8447ff495fd7 Mon Sep 17 00:00:00 2001 From: Alec Goncharow Date: Sun, 4 Oct 2020 23:42:31 -0400 Subject: [PATCH 1/2] Update README.md https://github.com/gfx-rs/wgpu-rs/commit/655828f88fee9d9f4a0985770fc012cc2fd6a7ec changed the name of the `vulkan` feature to `vulkan-portability` --- docs/beginner/tutorial1-window/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/beginner/tutorial1-window/README.md b/docs/beginner/tutorial1-window/README.md index 51b2c57e..3e4ee619 100644 --- a/docs/beginner/tutorial1-window/README.md +++ b/docs/beginner/tutorial1-window/README.md @@ -30,7 +30,7 @@ To enable the Vulkan backend, add this new section to `Cargo.toml`, and do not f ``` toml [dependencies.wgpu] version = "0.6" -features = ["vulkan"] +features = ["vulkan-portability"] ``` - This may not be necessary because normally `wgpu-rs` validation will catch problems. In fact that is one of it's From 836b38d8271360a63aefaaa68f86559d16cb9f1d Mon Sep 17 00:00:00 2001 From: Alec Goncharow Date: Sun, 4 Oct 2020 23:43:46 -0400 Subject: [PATCH 2/2] Update README.md minor typo fix, streen -> screen --- docs/beginner/tutorial2-swapchain/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/beginner/tutorial2-swapchain/README.md b/docs/beginner/tutorial2-swapchain/README.md index 4baaea75..40b107f4 100644 --- a/docs/beginner/tutorial2-swapchain/README.md +++ b/docs/beginner/tutorial2-swapchain/README.md @@ -375,7 +375,7 @@ The `ops` field takes a `wpgu::Operations` object. This tells wgpu what to do wi
-It's not uncommon to not clear the screen if the streen is going to be completely covered up with objects. If you're scene doesn't cover the entire screen however you'll end up with something like this. +It's not uncommon to not clear the screen if the screen is going to be completely covered up with objects. If you're scene doesn't cover the entire screen however you'll end up with something like this. ![./no-clear.png](./no-clear.png)