mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
* Generate EGL bindings for ohos Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * Adjust servoshell `bin` error message for android/ohos Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * ohos: disable WebGL offscreen buffers are not implemented yet on ohos. Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * Add OpenHarmony support to servoshell Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * Share ResourceReaderInstance Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * Share android/ohos HostTrait Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * Share servo glue Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com> * Pass Init options from ArkTS to Servo Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * f rebase ResourceReaderMethods Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * fixup! Share ResourceReaderInstance Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * Fix typo Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * Update Cargo.lock Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * ohos: Move WebGL check to webgl thread Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * Remove commented code Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> * Remove commented and duplicate / unused code Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> --------- Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
54 lines
1.7 KiB
Rust
54 lines
1.7 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/. */
|
|
#![allow(non_camel_case_types)]
|
|
#![allow(unused_imports)]
|
|
|
|
pub type ServoGl = std::rc::Rc<dyn servo::gl::Gl>;
|
|
|
|
use std::ffi::CString;
|
|
use std::os::raw::c_void;
|
|
|
|
use log::info;
|
|
use servo::gl::GlesFns;
|
|
|
|
pub type EGLNativeWindowType = *const libc::c_void;
|
|
pub type khronos_utime_nanoseconds_t = khronos_uint64_t;
|
|
pub type khronos_uint64_t = u64;
|
|
pub type khronos_ssize_t = libc::c_long;
|
|
pub type EGLint = i32;
|
|
pub type EGLContext = *const libc::c_void;
|
|
pub type EGLNativeDisplayType = *const libc::c_void;
|
|
pub type EGLNativePixmapType = *const libc::c_void;
|
|
pub type NativeDisplayType = EGLNativeDisplayType;
|
|
pub type NativePixmapType = EGLNativePixmapType;
|
|
pub type NativeWindowType = EGLNativeWindowType;
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/egl_bindings.rs"));
|
|
|
|
pub struct EGLInitResult {
|
|
pub gl_wrapper: ServoGl,
|
|
pub gl_context: EGLContext,
|
|
pub display: EGLNativeDisplayType,
|
|
}
|
|
|
|
pub fn init() -> Result<EGLInitResult, &'static str> {
|
|
info!("Loading EGL...");
|
|
unsafe {
|
|
let egl = Egl;
|
|
let display = egl.GetCurrentDisplay();
|
|
egl.SwapInterval(display, 1);
|
|
let egl = GlesFns::load_with(|addr| {
|
|
let addr = CString::new(addr.as_bytes()).unwrap();
|
|
let addr = addr.as_ptr();
|
|
let egl = Egl;
|
|
egl.GetProcAddress(addr) as *const c_void
|
|
});
|
|
info!("EGL loaded");
|
|
Ok(EGLInitResult {
|
|
gl_wrapper: egl,
|
|
gl_context: Egl.GetCurrentContext(),
|
|
display,
|
|
})
|
|
}
|
|
}
|