1
0
Fork 0
firefox/testing/web-platform/tests/webxr/depth-sensing/staleViewsTests.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

38 lines
1.1 KiB
JavaScript

'use strict';
const staleViewsTestFunction = function(session, controller, t, sessionObjects) {
const isCpuOptimized = session.depthUsage === 'cpu-optimized';
let done = false;
const staleViews = new Set();
return session.requestReferenceSpace('viewer').then((viewerSpace) => {
const glBinding = new XRWebGLBinding(session, sessionObjects.gl);
const secondRafCb = function(time, frame) {
for(const view of staleViews) {
t.step(() => {
assert_throws_dom("InvalidStateError",
() => isCpuOptimized ? frame.getDepthInformation(view)
: glBinding.getDepthInformation(view),
"getDepthInformation() should throw when run with stale XRView");
});
}
done = true;
};
const firstRafCb = function(time, frame) {
const pose = frame.getViewerPose(viewerSpace);
for(const view of pose.views) {
staleViews.add(view);
}
session.requestAnimationFrame(secondRafCb);
};
session.requestAnimationFrame(firstRafCb);
return t.step_wait(() => done);
});
};