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
3 changes: 3 additions & 0 deletions .deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ private = { ignore = true }
allow-git = [
# Waiting on releases; used in examples/tests only

# Pending a release for https://github.com/gfx-rs/metal-rs/pull/365
"https://github.com/gfx-rs/metal-rs.git",

# Pending a release for https://github.com/Xudong-Huang/generator-rs/pull/75
"https://github.com/Xudong-Huang/generator-rs",
]
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ By @cwfitzgerald in [#8579](https://github.com/gfx-rs/wgpu/pull/8579).

- Fixed a validation error regarding atomic memory semantics. By @atlv24 in [#8391](https://github.com/gfx-rs/wgpu/pull/8391).

#### Metal
- Fixed a variety of feature detection related bugs. By @inner-daemons in [#8439](https://github.com/gfx-rs/wgpu/pull/8439).

#### WebGPU

- Fixed a bug where the texture aspect was not passed through when calling `copy_texture_to_buffer` in WebGPU, causing the copy to fail for depth/stencil textures. By @Tim-Evans-Seequent in [#8445](https://github.com/gfx-rs/wgpu/pull/8445).
Expand Down
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ which = "8"
xshell = "0.2.2"

# Metal dependencies
metal = "0.32"
metal = { git = "https://github.com/gfx-rs/metal-rs.git", rev = "65eff6e77ebec23e4c8c171c6a252234f48a0c82" }
block = "0.1.6"
core-graphics-types = "0.2"
objc = "0.2.5"
Expand Down
Loading