[][src]Struct surfman::NativeContext

pub struct NativeContext {
    pub egl_context: *const c_void,
    pub egl_read_surface: *const c_void,
    pub egl_draw_surface: *const c_void,
}

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

impl NativeContext[src]

pub fn current() -> Result<NativeContext, Error>[src]

Returns the current EGL context and surfaces, if applicable.

If there is no current EGL context, this returns a NoCurrentContext error.

Trait Implementations

impl Clone for NativeContext[src]

impl Copy for NativeContext[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.