pub struct NativeContext {
pub egl_context: *const c_void,
pub egl_read_surface: *const c_void,
pub egl_draw_surface: *const c_void,
}
Expand description
Wrapper for a native EGLContext
.
Fields§
§egl_context: *const c_void
The EGL context.
egl_read_surface: *const c_void
The EGL read surface that is to be attached to that context.
egl_draw_surface: *const c_void
The EGL draw surface that is to be attached to that context.
Implementations§
source§impl NativeContext
impl NativeContext
sourcepub fn current() -> Result<NativeContext, Error>
pub fn current() -> Result<NativeContext, Error>
Returns the current EGL context and surfaces, if applicable.
If there is no current EGL context, this returns a NoCurrentContext
error.
Trait Implementations§
source§impl Clone for NativeContext
impl Clone for NativeContext
source§fn clone(&self) -> NativeContext
fn clone(&self) -> NativeContext
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for NativeContext
Auto Trait Implementations§
impl Freeze for NativeContext
impl RefUnwindSafe for NativeContext
impl !Send for NativeContext
impl !Sync for NativeContext
impl Unpin for NativeContext
impl UnwindSafe for NativeContext
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more