File tree 2 files changed +3
-8
lines changed 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -165,17 +165,12 @@ jobs:
165
165
cargo clippy --target ${{ matrix.target }} -p wgpu -p wgpu-core -p wgpu-info -p player --no-default-features
166
166
167
167
# 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
173
169
174
170
# build docs
175
171
# (Watch out for backend-selection features in wgpu-core; some of
176
172
# 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
179
174
180
175
wasm-test :
181
176
name : Test WebAssembly
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ and [`crate::CommandEncoder::set_render_pipeline`] with
27
27
[`crate::CommandEncoder::set_compute_pipeline`].
28
28
29
29
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`.
31
31
When the pipeline layout is changed, we reset all bindings.
32
32
Otherwise, we pass a range corresponding only to the current bind group.
33
33
You can’t perform that action at this time.
0 commit comments