[][src]Struct web_glitz::render_pass::RenderPassContext

pub struct RenderPassContext { /* fields omitted */ }

An execution context associated with a RenderPass.

Methods

impl RenderPassContext[src]

pub fn render_pass_id(&self) -> usize[src]

The ID of the RenderPass this RenderPassContext is associated with.

pub unsafe fn unpack(&self) -> (&Gl, &DynamicState)[src]

Unpacks this context into a reference to the raw web_sys::WebGl2RenderingContext and a reference to the WebGlitz state cache for this context.

Unsafe

If state is changed on the web_sys::WebGl2RenderingContext, than the cache must be updated accordingly.

pub unsafe fn unpack_mut(&mut self) -> (&mut Gl, &mut DynamicState)[src]

Unpacks this context into a mutable reference to the raw web_sys::WebGl2RenderingContext and a mutable reference to the WebGlitz state cache for this context.

Unsafe

If state is changed on the web_sys::WebGl2RenderingContext, than the cache must be updated accordingly.

Auto Trait Implementations

Blanket Implementations

impl<D, T> IntoBuffer<T> for D where
    D: Borrow<T> + 'static,
    T: Copy + 'static, 
[src]

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

impl<T> From<T> for 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.

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

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

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