Skip to content

Commit

Permalink
Use correct w value in xrFrame_getPose
Browse files Browse the repository at this point in the history
Values other than 1 are supposed to throw
  • Loading branch information
Manishearth committed Jul 17, 2019
1 parent 7ccc7b3 commit 37d758d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/wpt/metadata/MANIFEST.json
Expand Up @@ -687658,7 +687658,7 @@
"testharness"
],
"webxr/xrFrame_getPose.https.html": [
"50e8abf145b98730f4859c5ccd2ded4eb38d57ba",
"313cd11c32005abdfa4686bc857e514ee4a29f75",
"testharness"
],
"webxr/xrFrame_lifetime.https.html": [
Expand Down
4 changes: 2 additions & 2 deletions tests/wpt/web-platform-tests/webxr/xrFrame_getPose.https.html
Expand Up @@ -31,7 +31,7 @@
x : 0,
y : 1,
z : 0,
w : 0
w : 1
}),
DOMPointReadOnly.fromPoint({
x : Math.sin(radians / 2),
Expand All @@ -47,7 +47,7 @@
x : 1,
y : 0,
z : 0,
w : 0
w : 1
}),
DOMPointReadOnly.fromPoint({
x : 0,
Expand Down

0 comments on commit 37d758d

Please sign in to comment.