1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
/// Foreign Function Interface of the EGL unsafe bindings.
pub mod egl;
pub use egl::{
    load_with, EGLAttrib, EGLClientBuffer, EGLConfig, EGLContext, EGLDisplay, EGLImage,
    EGLImageKHR, EGLNativeDisplayType, EGLNativePixmapType, EGLNativeWindowType, EGLSurface,
    EGLenum, EGLint,
};

pub mod apis;
pub use apis::*;

/// Maintain the EGL Environment.
pub mod env;
pub use env::*;

pub mod error;
pub use error::*;

/// The shared library helper.
pub mod so;