egl: Rexport EGLContext on toplevel

This commit is contained in:
Victor Brekenfeld 2021-04-25 23:32:47 +02:00
parent 347507fc92
commit c6df50cb67
1 changed files with 3 additions and 1 deletions

View File

@ -42,8 +42,10 @@ use self::ffi::egl::types::EGLImage;
pub mod display; pub mod display;
pub mod native; pub mod native;
pub mod surface; pub mod surface;
pub use self::display::EGLDisplay;
pub use self::surface::EGLSurface; pub use self::surface::EGLSurface;
use crate::backend::egl::display::EGLDisplayHandle;
use self::display::EGLDisplayHandle;
use std::ffi::CString; use std::ffi::CString;
use std::sync::Arc; use std::sync::Arc;