-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace unnecessary use of FrozenArray in dictionaries
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
@@ -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&&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>) | ||
|
@@ -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&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>) | ||
|