feat: ✨ Add eye and lip tracking on Vive #4768
Annotations
4 errors
alvr/client_openxr/src/interaction.rs#L466
error[E0308]: mismatched types
--> alvr\client_openxr\src\interaction.rs:466:36
|
466 | || FaceTracker2FB::new(&self.xr_session, true, true),
| ------------------- ^^^^^^^^^^^^^^^^ expected `Session<_>`, found `&Session<OpenGlEs>`
| |
| arguments to this function are incorrect
|
= note: expected struct `openxr::Session<_>`
found reference `&openxr::Session<openxr::OpenGlEs>`
note: associated function defined here
--> alvr\client_openxr\src\extra_extensions\face_tracking2_fb.rs:12:12
|
12 | pub fn new<G>(session: xr::Session<G>, visual: bool, audio: bool) -> xr::Result<Self> {
| ^^^ -----------------------
help: consider removing the borrow
|
466 - || FaceTracker2FB::new(&self.xr_session, true, true),
466 + || FaceTracker2FB::new(self.xr_session, true, true),
|
|
alvr/client_openxr/src/interaction.rs#L480
error[E0308]: mismatched types
--> alvr\client_openxr\src\interaction.rs:480:21
|
479 | FacialTrackerHTC::new(
| --------------------- arguments to this function are incorrect
480 | &self.xr_session,
| ^^^^^^^^^^^^^^^^ expected `Session<_>`, found `&Session<OpenGlEs>`
|
= note: expected struct `openxr::Session<_>`
found reference `&openxr::Session<openxr::OpenGlEs>`
note: associated function defined here
--> alvr\client_openxr\src\extra_extensions\facial_tracking_htc.rs:13:12
|
13 | pub fn new<G>(
| ^^^
14 | session: xr::Session<G>,
| -----------------------
help: consider removing the borrow
|
480 - &self.xr_session,
480 + self.xr_session,
|
|
alvr/client_openxr/src/interaction.rs#L492
error[E0308]: mismatched types
--> alvr\client_openxr\src\interaction.rs:492:21
|
491 | FacialTrackerHTC::new(
| --------------------- arguments to this function are incorrect
492 | &self.xr_session,
| ^^^^^^^^^^^^^^^^ expected `Session<_>`, found `&Session<OpenGlEs>`
|
= note: expected struct `openxr::Session<_>`
found reference `&openxr::Session<openxr::OpenGlEs>`
note: associated function defined here
--> alvr\client_openxr\src\extra_extensions\facial_tracking_htc.rs:13:12
|
13 | pub fn new<G>(
| ^^^
14 | session: xr::Session<G>,
| -----------------------
help: consider removing the borrow
|
492 - &self.xr_session,
492 + self.xr_session,
|
|
|
The logs for this run have expired and are no longer available.
Loading