Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/beginner/tutorial1-window/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ anyhow = "1.0"
winit = { version = "0.30", features = ["android-native-activity"] }
env_logger = "0.10"
log = "0.4"
wgpu = "28.0"
wgpu = "29.0.3"
pollster = "0.3"
```

Expand Down Expand Up @@ -245,7 +245,7 @@ pub fn run() -> anyhow::Result<()> {
let event_loop = EventLoop::with_user_event().build()?;
#[cfg(not(target_arch = "wasm32"))]
{
let mut app = App::new();
let mut app = App::new(&event_loop);
event_loop.run_app(&mut app)?;
}
#[cfg(target_arch = "wasm32")]
Expand Down
2 changes: 1 addition & 1 deletion docs/beginner/tutorial8-depth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Don't forget to store the `depth_texture` in `State`.
```rust
pub struct State {
// ...
depth_texture: Texture,
depth_texture: texture::Texture,
// ...
}

Expand Down