You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some proposed "fixes", but really just wonky workarounds.
Pimax SLAM origin doesn't seem consistent across restarting pi_server no matter whether the Pimax Room Setup was run. In order to avoid being a mile high or upside-down, force a recenter upon connection to PVR. This of course doesn't ensure that you will start in the room at the correct position every time, but at least it gets you closer than before.
Also bump up the priority of the tracking thread. This might help with people who've seen stutters (and I guess they probably incorrectly mess around with process lasso or others).
I confirmed an eye-tracking failure case on Dream Air with Pimax EVO/OpenPort and Sboys beta.1.1. The underlying Pimax/Tobii source stopped advancing pvrEyeTrackingInfo.TimeInSeconds for over 419 seconds.
Sboys continued processing the repeated sample and assigned it a fresh local timestamp, so SteamVR still received the last frozen gaze as current/valid.
Suggested defensive behaviour: track the PVR source timestamp and, if it stops advancing for a short timeout, publish eye tracking as inactive/invalid until a newer source sample arrives. Logging source-stalled and source-recovered events would also help diagnosis.
This would not fix the underlying Pimax/Tobii runtime freeze, but it would prevent stale gaze from being passed to foveated-rendering consumers as live data.
Then there is logic in the EyeTrackingOutput helper to ignore poses older than 1s.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Some proposed "fixes", but really just wonky workarounds.
Pimax SLAM origin doesn't seem consistent across restarting
pi_serverno matter whether the Pimax Room Setup was run. In order to avoid being a mile high or upside-down, force a recenter upon connection to PVR. This of course doesn't ensure that you will start in the room at the correct position every time, but at least it gets you closer than before.Also bump up the priority of the tracking thread. This might help with people who've seen stutters (and I guess they probably incorrectly mess around with process lasso or others).