BackendContext

Struct BackendContext 

Source
pub struct BackendContext { /* private fields */ }
Expand description

GPU Context representation.

Trait Implementations§

Source§

impl HasContext for Context

Source§

fn new(builder: &ContextBuilder) -> Self

Creates a new Context.
Source§

fn run(&mut self) -> bool

Runs the Context and returns false if the Context is no longer available.
Source§

fn make_current(&self) -> Result<(), ContextError>

Makes the Context current for the current thread.
Source§

fn swap_buffers(&self) -> Result<(), ContextError>

Swap buffers for presenting in the ContextDisplay.
Source§

fn get_proc_address(&self, addr: &str) -> *const ()

OpenGL function dynamic loading.
Source§

fn inner_dimensions(&self) -> (usize, usize)

Gets the inner dimensions of the ContextDisplay.
Source§

impl HasGLContext for Context

Source§

fn gl_context(&self) -> GLContext

Gets the GLContext.

Auto Trait Implementations§

§

impl !Freeze for Context

§

impl !RefUnwindSafe for Context

§

impl !Send for Context

§

impl !Sync for Context

§

impl Unpin for Context

§

impl UnwindSafe for Context

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.