mirror of
https://github.com/servo/servo.git
synced 2025-06-09 09:03:23 +00:00
* Add webxr feature flag Add webxr feature flag to embedder_traits Add webxr flag to constellation Add webxr flag to compositor Add webxr flag to canvas Turn registry into optional Add webxr flag to servo lib Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> Co-authored-by: august kline <me@augustkline.com> * Cargo fmt Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> * Add missing license Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> * Cargo clippy Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> --------- Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> Co-authored-by: august kline <me@augustkline.com>
17 lines
426 B
Rust
17 lines
426 B
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/. */
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
mod raqote_backend;
|
|
|
|
pub use webgl_mode::WebGLComm;
|
|
|
|
pub mod canvas_data;
|
|
pub mod canvas_paint_thread;
|
|
mod webgl_limits;
|
|
mod webgl_mode;
|
|
pub mod webgl_thread;
|
|
#[cfg(feature = "webxr")]
|
|
mod webxr;
|