mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
Automatic update from web-platform-tests Move outputContext from XRSession to XRRenderState This requires all sessions that were previously setting an outputContext in the requestSession call to move that assignment to an updateRenderState call post-session-creation instead. Additionally, "inline" sessions can now be created without an outputContext but must still have one assigned to them before any requestAnimationFrame callbacks will be processed. Bug: 928417 Change-Id: I469fab8c3f641870387f2f92aee52182016efe37 Reviewed-on: https://chromium-review.googlesource.com/c/1476097 Commit-Queue: Brandon Jones <bajones@chromium.org> Reviewed-by: Brian Sheedy <bsheedy@chromium.org> Reviewed-by: Klaus Weidner <klausw@chromium.org> Cr-Commit-Position: refs/heads/master@{#636557} -- wpt-commits: b7ddf2f33d3ce50ffbec25fbcc4806afba1d395a wpt-pr: 15507
46 lines
1.8 KiB
HTML
46 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<script src=/resources/testharness.js></script>
|
|
<script src=/resources/testharnessreport.js></script>
|
|
<script src="resources/webxr_util.js"></script>
|
|
<script>
|
|
xr_promise_test(
|
|
"Ensure that XRPresentationContexts are properly transfered between session",
|
|
(t) => {
|
|
return XRTest.simulateDeviceConnection({ supportsImmersive:false })
|
|
.then( (controller) => {
|
|
Promise.all([
|
|
navigator.xr.requestSession({ mode: 'inline'}),
|
|
navigator.xr.requestSession({ mode: 'inline'})
|
|
]).then((sessions) => {
|
|
assert_not_equals(sessions[0], null);
|
|
assert_not_equals(sessions[1], null);
|
|
|
|
let outputContext = getOutputContext();
|
|
|
|
sessions[0].updateRenderState({
|
|
baseLayer: new XRWebGLLayer(session, gl),
|
|
outputContext: outputContext
|
|
});
|
|
|
|
sessions[0].requestAnimationFrame((time, xrFrame) => {
|
|
sessions[1].updateRenderState({
|
|
baseLayer: new XRWebGLLayer(session, gl),
|
|
outputContext: outputContext
|
|
});
|
|
|
|
// outputContext reassignment should not happen until the next frame is processed.
|
|
assert_equals(sessions[0].renderState.outputContext, outputContext);
|
|
assert_equals(sessions[1].renderState.outputContext, null);
|
|
|
|
sessions[1].requestAnimationFrame((time, xrFrame) => {
|
|
// Ensure the outputContext was properly reassigned from one context to the other.
|
|
assert_equals(sessions[0].renderState.outputContext, null);
|
|
assert_equals(sessions[1].renderState.outputContext, outputContext);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|