Skip to content

Commit

Permalink
Merge pull request #119 from immersive-web/return-sequence
Browse files Browse the repository at this point in the history
Return sequences instead of FrozenArrays
  • Loading branch information
toji authored Jun 11, 2024
2 parents c77ff88 + 08b505a commit 6b5297b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,8 @@ Obtaining hit test results {#obtaining-hit-test-results}

<script type="idl">
partial interface XRFrame {
FrozenArray<XRHitTestResult> getHitTestResults(XRHitTestSource hitTestSource);
FrozenArray<XRTransientInputHitTestResult> getHitTestResultsForTransientInput(XRTransientInputHitTestSource hitTestSource);
sequence<XRHitTestResult> getHitTestResults(XRHitTestSource hitTestSource);
sequence<XRTransientInputHitTestResult> getHitTestResultsForTransientInput(XRTransientInputHitTestSource hitTestSource);
};
</script>

Expand Down

0 comments on commit 6b5297b

Please sign in to comment.