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]

pub unsafe fn make_not_current(
    self
) -> Result<Context<NotCurrent>, (Self, ContextError)>
[src]

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.

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

impl<T> Sync for Context<T> where
    T: Sync

impl<T> Unpin for Context<T> where
    T: Unpin

impl<T> !UnwindSafe for Context<T>

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, 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.