mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
- The default value for SwapInterval is 1, so setting it to 1 changes nothing - We don't clear the screen immediately anymore, which was the only useage of the egl bindings this saves us from duplicated EGL bindings. Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
14 lines
332 B
Rust
14 lines
332 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/. */
|
|
|
|
#[cfg(target_os = "android")]
|
|
mod android;
|
|
|
|
#[cfg(target_env = "ohos")]
|
|
mod ohos;
|
|
|
|
mod log;
|
|
|
|
mod host_trait;
|
|
mod servo_glue;
|