mirror of
https://github.com/servo/servo.git
synced 2025-08-24 06:45:33 +01:00
Update web-platform-tests to revision bc60e6f82132cfc9a5b688c566c7772024b3c15c
This commit is contained in:
parent
449881f566
commit
29156ca9e2
223 changed files with 7517 additions and 2093 deletions
|
@ -0,0 +1,79 @@
|
|||
<!DOCTYPE html>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="resources/webxr_util.js"></script>
|
||||
<script src="resources/webxr_test_constants.js"></script>
|
||||
<script src="resources/webxr_test_asserts.js"></script>
|
||||
<canvas />
|
||||
|
||||
<script>
|
||||
|
||||
let testName = "XRView projection matrices update near and far depths on the "
|
||||
+ "next frame";
|
||||
|
||||
const fakeViews = [{
|
||||
eye:"left",
|
||||
projectionMatrix: VALID_PROJECTION_MATRIX,
|
||||
viewOffset: LEFT_OFFSET,
|
||||
resolution: VALID_RESOLUTION
|
||||
}, {
|
||||
eye:"right",
|
||||
projectionMatrix: VALID_PROJECTION_MATRIX,
|
||||
viewOffset: RIGHT_OFFSET,
|
||||
resolution: VALID_RESOLUTION
|
||||
},
|
||||
];
|
||||
|
||||
let fakeDeviceInitParams = {
|
||||
supportsImmersive: true,
|
||||
views: fakeViews,
|
||||
viewerOrigin: IDENTITY_TRANSFORM
|
||||
};
|
||||
|
||||
let testFunction = function(session, fakeDeviceController, t) {
|
||||
return session.requestReferenceSpace('local')
|
||||
.then((referenceSpace) => new Promise((resolve) =>{
|
||||
let counter = 0;
|
||||
|
||||
function onFrame(time, xrFrame) {
|
||||
let pose = xrFrame.getViewerPose(referenceSpace);
|
||||
assert_not_equals(pose, null);
|
||||
assert_not_equals(pose.views, null);
|
||||
assert_equals(pose.views.length, 2);
|
||||
if (counter == 0) {
|
||||
session.requestAnimationFrame(onFrame);
|
||||
|
||||
assert_matrix_approx_equals(pose.views[0].projectionMatrix, VALID_PROJECTION_MATRIX);
|
||||
assert_matrix_approx_equals(pose.views[1].projectionMatrix, VALID_PROJECTION_MATRIX);
|
||||
|
||||
// Update the near and far depths for the session.
|
||||
session.updateRenderState({
|
||||
depthNear: 1.0,
|
||||
depthFar: 10.0 });
|
||||
|
||||
// The projection matrices the views report should not take into
|
||||
// account the new session depth values this frame.
|
||||
assert_matrix_approx_equals(pose.views[0].projectionMatrix, VALID_PROJECTION_MATRIX);
|
||||
assert_matrix_approx_equals(pose.views[1].projectionMatrix, VALID_PROJECTION_MATRIX);
|
||||
} else {
|
||||
// New depth values should be retained between frames.
|
||||
assert_equals(session.renderState.depthNear, 1.0);
|
||||
assert_equals(session.renderState.depthFar, 10.0);
|
||||
|
||||
// Projection matricies should now reflect the new depth values, i.e.
|
||||
// have changed.
|
||||
assert_matrix_significantly_not_equals(pose.views[0].projectionMatrix, VALID_PROJECTION_MATRIX);
|
||||
assert_matrix_significantly_not_equals(pose.views[1].projectionMatrix, VALID_PROJECTION_MATRIX);
|
||||
resolve();
|
||||
}
|
||||
counter++;
|
||||
}
|
||||
|
||||
session.requestAnimationFrame(onFrame);
|
||||
}));
|
||||
};
|
||||
|
||||
xr_session_promise_test(
|
||||
testName, testFunction, fakeDeviceInitParams, 'immersive-vr');
|
||||
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue