We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Figure out how to capture images on both Monado and Meta Quest headsets for OpenXR. This is required for CI support.
Concern: how accurate is the replay cube location? Can we compare results between runs? Probably if we record in a static position.
The text was updated successfully, but these errors were encountered:
Online says several different possibilities:
adb shell am startservice -n com.oculus.metacam/.capture.CaptureService -a TAKE_SCREENSHOT [--ei screenshot_height <screenshot_height>] [--ei screenshot_width <screenshot_width>]
We might be able to use:
adb exec-out screencap -p > screen.png
Sorry, something went wrong.
Ok, using
adb shell am startservice -n com.oculus.metacam/.capture.CaptureService -a TAKE_SCREENSHOT --ei screenshot_width 1920 --ei screenshot_height 1080
Places the screenshot under
/storage/self/primary/Oculus/Screenshots
The files are prefixed with the application name: com.lunarg.gfxreconstruct.replay- and end with .jpg.
com.lunarg.gfxreconstruct.replay-
.jpg
You can then pull them down like this:
adb pull /storage/self/primary/Oculus/Screenshots/com.lunarg.gfxreconstruct.replay-20241028-105602.jpg
No branches or pull requests
Figure out how to capture images on both Monado and Meta Quest headsets for OpenXR. This is required for CI support.
Concern: how accurate is the replay cube location? Can we compare results between runs? Probably if we record in a static position.
The text was updated successfully, but these errors were encountered: