Skip to main content

servoshell/desktop/
mod.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5//! Contains files specific to the servoshell app for Desktop systems.
6
7mod accelerated_gl_media;
8pub(crate) mod app;
9pub(crate) mod cli;
10pub(crate) mod dialog;
11pub(crate) mod event_loop;
12#[cfg(feature = "gamepad")]
13pub(crate) mod gamepad;
14pub mod geometry;
15mod gui;
16pub(crate) mod headed_window;
17mod headless_window;
18mod keyutils;
19mod protocols;
20mod tracing;
21#[cfg(feature = "webxr")]
22mod webxr;