surfman 0.3.0

A cross-platform, low-level toolkit for GPU surface management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// surfman/surfman/src/platform/android/mod.rs
//
//! Bindings to EGL on Android.

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

mod ffi;

#[path = "../../implementation/mod.rs"]
mod implementation;

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