immersive-web / webxr-samples

Samples to demonstrate use of the WebXR Device API
https://immersive-web.github.io/webxr-samples/
MIT License
1.01k stars 485 forks source link

Fix video start/pose race condition in stere video example #50

Closed takahirox closed 4 years ago

takahirox commented 4 years ago

Stereo video example has race condition for video start/pose in autoplay mode. If request session promise is resolved before video.play() promise is resolved then video is unexpectedly paused when video.play() promise is resolved. This PR removes this race condition.

toji commented 4 years ago

Thanks for the fix! Sorry it took me a while to notice the PR.