Struct glutin::Context [−][src]
pub struct Context<T: ContextCurrentState> { /* fields omitted */ }
Represents an OpenGL Context.
A Context is normally associated with a single Window, however
Contexts can be shared between multiple windows or be headless.
If a Context is backed by a window, it will be wrapped by either
RawContext<T> or WindowedContext<T>.
Example
let cb = glutin::ContextBuilder::new() .with_vsync(true) .with_multisampling(8) .with_shared_lists(some_context.context());
Implementations
impl<T: ContextCurrentState> Context<T>[src]
pub unsafe fn make_current(
self
) -> Result<Context<PossiblyCurrent>, (Self, ContextError)>[src]
self
) -> Result<Context<PossiblyCurrent>, (Self, ContextError)>
pub unsafe fn make_not_current(
self
) -> Result<Context<NotCurrent>, (Self, ContextError)>[src]
self
) -> Result<Context<NotCurrent>, (Self, ContextError)>
pub unsafe fn treat_as_not_current(self) -> Context<NotCurrent>[src]
pub unsafe fn treat_as_current(self) -> Context<PossiblyCurrent>[src]
pub fn is_current(&self) -> bool[src]
pub fn get_api(&self) -> Api[src]
impl Context<PossiblyCurrent>[src]
pub fn get_proc_address(&self, addr: &str) -> *const c_void[src]
Trait Implementations
impl<T: ContextCurrentState> ContextTraitExt for Context<T>[src]
type Handle = RawHandle
Raw context handle.
unsafe fn raw_handle(&self) -> Self::Handle[src]
unsafe fn get_egl_display(&self) -> Option<*const c_void>[src]
impl<T: Debug + ContextCurrentState> Debug for Context<T>[src]
Auto Trait Implementations
impl<T> !RefUnwindSafe for Context<T>
impl<T> Send for Context<T> where
T: Send,
T: Send,
impl<T> Sync for Context<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Context<T> where
T: Unpin,
T: Unpin,
impl<T> !UnwindSafe for Context<T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,