Skip to content

Commit 44d11a0

Browse files
committed
Address review
1 parent 645ecec commit 44d11a0

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -165,17 +165,12 @@ jobs:
165165
cargo clippy --target ${{ matrix.target }} -p wgpu -p wgpu-core -p wgpu-info -p player --no-default-features
166166
167167
# Check with all features.
168-
# (But watch out for backend-selection features in wgpu-core; some of
169-
# those only build on the right platforms.)
170-
cargo clippy --target ${{ matrix.target }} -p wgpu-hal --tests --all-features
171-
cargo clippy --target ${{ matrix.target }} -p wgpu-core --tests --all-features
172-
cargo clippy --target ${{ matrix.target }} -p wgpu -p wgpu-info -p player --tests --all-features
168+
cargo clippy --target ${{ matrix.target }} -p wgpu -p wgpu-info -p player -p wgpu-core -p wgpu-hal --tests --all-features
173169
174170
# build docs
175171
# (Watch out for backend-selection features in wgpu-core; some of
176172
# those only build on the right platforms.)
177-
cargo doc --target ${{ matrix.target }} -p wgpu -p wgpu-info -p player --all-features --no-deps
178-
cargo doc --target ${{ matrix.target }} -p wgpu-core --no-deps --all-features
173+
cargo doc --target ${{ matrix.target }} -p wgpu -p wgpu-info -p player -p wgpu-core -p wgpu-hal --all-features --no-deps
179174
180175
wasm-test:
181176
name: Test WebAssembly

wgpu-hal/src/dx12/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ and [`crate::CommandEncoder::set_render_pipeline`] with
2727
[`crate::CommandEncoder::set_compute_pipeline`].
2828
2929
For this reason, in order avoid repeating the binding code,
30-
we are binding everything in [`CommandEncoder::update_root_elements`].
30+
we are binding everything in `CommandEncoder::update_root_elements`.
3131
When the pipeline layout is changed, we reset all bindings.
3232
Otherwise, we pass a range corresponding only to the current bind group.
3333

0 commit comments

Comments
 (0)