Full range wgpu partial fix #4601
Triggered via pull request
December 30, 2024 22:38
Status
Failure
Total duration
13m 26s
Artifacts
–
rust.yml
on: pull_request
check-windows
8m 14s
check-linux
4m 41s
check-macos
1m 46s
build-android
3m 40s
tests
1m 36s
check-format
16s
check-msrv-windows
13m 13s
check-msrv-linux
7m 52s
Annotations
7 errors and 2 warnings
check-macos
Process completed with exit code 101.
|
check-linux:
alvr/server_core/src/connection.rs#L763
error[E0063]: missing field `use_full_range` in initializer of `alvr_packets::NegotiatedStreamingConfig`
--> alvr/server_core/src/connection.rs:763:10
|
763 | &NegotiatedStreamingConfig {
| ^^^^^^^^^^^^^^^^^^^^^^^^^ missing `use_full_range`
|
check-linux
Process completed with exit code 101.
|
check-msrv-linux
Process completed with exit code 101.
|
check-windows:
alvr/server_core/src/connection.rs#L763
error[E0063]: missing field `use_full_range` in initializer of `alvr_packets::NegotiatedStreamingConfig`
--> alvr\server_core\src\connection.rs:763:10
|
763 | &NegotiatedStreamingConfig {
| ^^^^^^^^^^^^^^^^^^^^^^^^^ missing `use_full_range`
|
check-windows
Process completed with exit code 1.
|
check-msrv-windows
Process completed with exit code 1.
|
check-linux:
alvr/packets/src/lib.rs#L177
warning: unnecessary closure used to substitute value for `Result::Err`
--> alvr/packets/src/lib.rs:177:26
|
177 | let use_full_range = json::from_value(negotiated_json["use_full_range"].clone())
| __________________________^
178 | | .unwrap_or_else(|_| settings.video.encoder_config.use_full_range);
| |_________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations
= note: `#[warn(clippy::unnecessary_lazy_evaluations)]` on by default
help: use `unwrap_or` instead
|
178 | .unwrap_or(settings.video.encoder_config.use_full_range);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
check-windows:
alvr/packets/src/lib.rs#L177
warning: unnecessary closure used to substitute value for `Result::Err`
--> alvr\packets\src\lib.rs:177:26
|
177 | let use_full_range = json::from_value(negotiated_json["use_full_range"].clone())
| __________________________^
178 | | .unwrap_or_else(|_| settings.video.encoder_config.use_full_range);
| |_________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations
= note: `#[warn(clippy::unnecessary_lazy_evaluations)]` on by default
help: use `unwrap_or` instead
|
178 | .unwrap_or(settings.video.encoder_config.use_full_range);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|