[][src]Trait rg3d::platform::ContextTraitExt

pub trait ContextTraitExt {
    type Handle;
    unsafe fn raw_handle(&self) -> Self::Handle;
unsafe fn get_egl_display(&self) -> Option<*const c_void>; }

Platform-specific extensions for OpenGL Contexts.

Associated Types

type Handle

Raw context handle.

Loading content...

Required methods

unsafe fn raw_handle(&self) -> Self::Handle

Returns the raw context handle.

unsafe fn get_egl_display(&self) -> Option<*const c_void>

Returns a pointer to the EGLDisplay object of EGL that is used by this context.

Return None if the context doesn't use EGL.

Loading content...

Implementors

impl<T> ContextTraitExt for Context<T> where
    T: ContextCurrentState
[src]

Loading content...