mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
Removes some unneeded lints, especially `#[allow(unsafe_code)]`. Testing: Refactor Part of: #40383 Signed-off-by: WaterWhisperer <waterwhisperer24@qq.com>
46 lines
1.4 KiB
Rust
46 lines
1.4 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
pub(crate) mod fakexrdevice;
|
|
pub(crate) mod fakexrinputcontroller;
|
|
pub(crate) mod xrboundedreferencespace;
|
|
pub(crate) mod xrcompositionlayer;
|
|
pub(crate) mod xrcubelayer;
|
|
pub(crate) mod xrcylinderlayer;
|
|
pub(crate) mod xrequirectlayer;
|
|
pub(crate) mod xrframe;
|
|
pub(crate) mod xrhand;
|
|
pub(crate) mod xrhittestresult;
|
|
pub(crate) mod xrhittestsource;
|
|
pub(crate) mod xrinputsource;
|
|
pub(crate) mod xrinputsourcearray;
|
|
pub(crate) mod xrinputsourceevent;
|
|
pub(crate) mod xrinputsourceschangeevent;
|
|
pub(crate) mod xrjointpose;
|
|
pub(crate) mod xrjointspace;
|
|
pub(crate) mod xrlayer;
|
|
pub(crate) mod xrlayerevent;
|
|
pub(crate) mod xrmediabinding;
|
|
pub(crate) mod xrpose;
|
|
pub(crate) mod xrprojectionlayer;
|
|
pub(crate) mod xrquadlayer;
|
|
pub(crate) mod xrray;
|
|
pub(crate) mod xrreferencespace;
|
|
pub(crate) mod xrreferencespaceevent;
|
|
pub(crate) mod xrrenderstate;
|
|
pub(crate) mod xrrigidtransform;
|
|
#[expect(dead_code)]
|
|
pub(crate) mod xrsession;
|
|
pub(crate) mod xrsessionevent;
|
|
pub(crate) mod xrspace;
|
|
pub(crate) mod xrsubimage;
|
|
pub(crate) mod xrsystem;
|
|
pub(crate) mod xrtest;
|
|
pub(crate) mod xrview;
|
|
pub(crate) mod xrviewerpose;
|
|
pub(crate) mod xrviewport;
|
|
pub(crate) mod xrwebglbinding;
|
|
pub(crate) mod xrwebgllayer;
|
|
pub(crate) mod xrwebglsubimage;
|