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;
9mod app_state;
10pub(crate) mod cli;
11mod dialog;
12pub(crate) mod events_loop;
13mod gamepad;
14pub mod geometry;
15mod headed_window;
16mod headless_window;
17mod keyutils;
18mod minibrowser;
19mod protocols;
20mod tracing;
21#[cfg(feature = "webxr")]
22mod webxr;
23mod window_trait;