surfman 0.13.0

A cross-platform, low-level toolkit for GPU surface management
Documentation
//! Bindings to EGL on Android.

pub mod connection;
pub mod context;
pub mod device;
pub mod surface;

#[cfg(android_platform)]
mod android_ffi;

#[cfg(ohos_platform)]
mod ohos_ffi;

crate::implement_interfaces!();

#[cfg(feature = "sm-test")]
#[path = "../tests.rs"]
pub mod tests;

#[cfg(all(not(feature = "sm-test"), test))]
#[path = "../tests.rs"]
pub mod tests;