diff options
author | bors-servo <servo-ops@mozilla.com> | 2020-08-04 19:08:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 19:08:41 -0400 |
commit | f8c8307f94c439893dfe92a4ca3a5ec97e68eddc (patch) | |
tree | 6555c3f3d76b40219e0ad36f7814ffd3166e45cf /components/script/dom/mod.rs | |
parent | 549179bbd68a2de57a1083ee77a595da323dbd6b (diff) | |
parent | a2fa556315488b0168e4e834137c60f4504f64d7 (diff) | |
download | servo-f8c8307f94c439893dfe92a4ca3a5ec97e68eddc.tar.gz servo-f8c8307f94c439893dfe92a4ca3a5ec97e68eddc.zip |
Auto merge of #27499 - asajeffrey:webxr-xrmedia-dummy, r=Manishearth
Add dummy implementations of missing XR layer types
<!-- Please describe your changes on the following line: -->
Add dummy implementations of the missing layer types, and the functions that create them.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] There are tests for these changes
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r-- | components/script/dom/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index 30681be0ff2..76ed789e8ad 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -599,6 +599,10 @@ pub mod xmlhttprequest; pub mod xmlhttprequesteventtarget; pub mod xmlhttprequestupload; pub mod xmlserializer; +pub mod xrcompositionlayer; +pub mod xrcubelayer; +pub mod xrcylinderlayer; +pub mod xrequirectlayer; pub mod xrframe; pub mod xrhand; pub mod xrhittestresult; @@ -612,6 +616,8 @@ pub mod xrjointspace; pub mod xrlayer; pub mod xrmediabinding; pub mod xrpose; +pub mod xrprojectionlayer; +pub mod xrquadlayer; pub mod xrray; pub mod xrreferencespace; pub mod xrrenderstate; |