Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace unnecessary use of FrozenArray in dictionaries #1369

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -2470,8 +2470,8 @@ interface XRInputSourcesChangeEvent : Event {

dictionary XRInputSourcesChangeEventInit : EventInit {
required XRSession session;
required FrozenArray<XRInputSource> added;
required FrozenArray<XRInputSource> removed;
required sequence<XRInputSource> added;
required sequence<XRInputSource> removed;

};
</pre>
Expand Down Expand Up @@ -3012,7 +3012,7 @@ Changes:
- Mention that the opaque framebuffer holds a reference to a particular session (<a href="https://github.com/immersive-web/webxr/pull/1004">GitHub #1004</a>)
- Defer initial inputsourcechange event till after the promise resolves (<a href="https://github.com/immersive-web/webxr/pull/1002">GitHub #1002</a>)
- Documented the effects of the framebufferScaleFactor (<a href="https://github.com/immersive-web/webxr/pull/993">GitHub #993</a>)
- Allow depth&&stencil result if depth||stencil requested (<a href="https://github.com/immersive-web/webxr/pull/987">GitHub #987</a>)
- Allow depth&amp;&amp;stencil result if depth||stencil requested (<a href="https://github.com/immersive-web/webxr/pull/987">GitHub #987</a>)
- Allow more flexibility in what isSessionSupported returns (<a href="https://github.com/immersive-web/webxr/pull/986">GitHub #986</a>)
- Clarify when tracking/input data is exposed via inline devices (<a href="https://github.com/immersive-web/webxr/pull/985">GitHub #985</a>)
- Add common sense restrictions on viewport shape (<a href="https://github.com/immersive-web/webxr/pull/976">GitHub #976</a>)
Expand Down Expand Up @@ -3165,7 +3165,7 @@ Thank you to the following individuals for their contributions the WebXR Device
* <a href="mailto:[email protected]">Klaus Weidner</a> (<a href="https://google.com">Google</a>)
* <a href="mailto:[email protected]">Alan Jeffrey</a> (<a href="https://mozilla.org/">Mozilla</a>)
* <a href="mailto:[email protected]">Diane Hosfelt</a> (<a href="https://mozilla.org/">Mozilla</a>)
* <a href="mailto:[email protected]">Kyungsuk</a> (<a href="https://www.xandr.com/">AT&T Xandr</a>)
* <a href="mailto:[email protected]">Kyungsuk</a> (<a href="https://www.xandr.com/">AT&amp;T Xandr</a>)
* <a href="mailto:[email protected]">David Dorwin</a> (<a href="https://google.com">Google</a>)
* <a href="mailto:[email protected]">Trevor F. Smith</a> (<a href="https://transmutable.com/">Transmutable</a>)
* <a href="mailto:[email protected]">Ada Rose Cannon</a> (<a href="https://samsung.com">Samsung</a>)
Expand Down
Loading