Skip to content

Commit

Permalink
update wgpu to v0.16.2 (#280)
Browse files Browse the repository at this point in the history
* update wgpu to v0.16.2

* fix typos
  • Loading branch information
rajveermalviya authored Jul 12, 2023
1 parent 2afa435 commit cc5efdb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,35 +30,35 @@ trace = ["wgc/trace"]
[dependencies.wgc]
package = "wgpu-core"
git = "https://github.com/gfx-rs/wgpu"
rev = "2dba493d1e96ca11c7affc23a1c202ef670b689a"
rev = "6c84d438a5335b18234c47830f9eb5a810ae8c21"
version = "0.16"
features = ["raw-window-handle", "gles"]

[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.wgc]
package = "wgpu-core"
git = "https://github.com/gfx-rs/wgpu"
rev = "2dba493d1e96ca11c7affc23a1c202ef670b689a"
rev = "6c84d438a5335b18234c47830f9eb5a810ae8c21"
version = "0.16"
features = ["metal"]

[target.'cfg(windows)'.dependencies.wgc]
package = "wgpu-core"
git = "https://github.com/gfx-rs/wgpu"
rev = "2dba493d1e96ca11c7affc23a1c202ef670b689a"
rev = "6c84d438a5335b18234c47830f9eb5a810ae8c21"
version = "0.16"
features = ["dx11", "dx12"]

[target.'cfg(any(windows, all(unix, not(target_arch = "emscripten"), not(target_os = "ios"), not(target_os = "macos"))))'.dependencies.wgc]
package = "wgpu-core"
git = "https://github.com/gfx-rs/wgpu"
rev = "2dba493d1e96ca11c7affc23a1c202ef670b689a"
rev = "6c84d438a5335b18234c47830f9eb5a810ae8c21"
version = "0.16"
features = ["vulkan"]

[dependencies.wgt]
package = "wgpu-types"
git = "https://github.com/gfx-rs/wgpu"
rev = "2dba493d1e96ca11c7affc23a1c202ef670b689a"
rev = "6c84d438a5335b18234c47830f9eb5a810ae8c21"
version = "0.16"

[dependencies.naga]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2063,7 +2063,7 @@ pub unsafe extern "C" fn wgpuDeviceCreateQuerySet(
cause,
LABEL,
desc.label,
"wgpuDeviceCreatePipelineLayout",
"wgpuDeviceCreateQuerySet",
);
}

Expand Down Expand Up @@ -2379,7 +2379,7 @@ pub unsafe extern "C" fn wgpuDeviceCreateShaderModule(
cause,
LABEL,
desc.label,
"wgpuDeviceCreateSampler",
"wgpuDeviceCreateShaderModule",
);
}

Expand Down

0 comments on commit cc5efdb

Please sign in to comment.