[][src]Struct nuki_backend_gles::Drawer

pub struct Drawer<'a> { /* fields omitted */ }

Implementations

impl<'a> Drawer<'a>[src]

pub fn new(
    alloc: &Allocator,
    max_vertex_buffer: usize,
    max_element_buffer: usize
) -> Self
[src]

pub fn draw(&mut self, ctx: &mut Context, options: &DrawOptions)[src]

Draw all elements in the context.

pub fn add_font_texture<'b>(
    &mut self,
    data: &'b [u8],
    width: u32,
    height: u32
) -> Handle
[src]

pub fn bake_font_atlas<'b>(&mut self, atlas: &'b mut FontAtlas) -> Handle[src]

pub fn clip_rect(&self, rect: &Rect, options: &DrawOptions)[src]

pub fn get_projection(&self, options: &DrawOptions) -> Matrix4[src]

pub fn get_null(&self) -> &DrawNullTexture[src]

pub fn get_null_mut(&mut self) -> &mut DrawNullTexture[src]

Trait Implementations

impl<'a> Clone for Drawer<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Drawer<'a>[src]

impl<'a> !Send for Drawer<'a>[src]

impl<'a> !Sync for Drawer<'a>[src]

impl<'a> Unpin for Drawer<'a>[src]

impl<'a> !UnwindSafe for Drawer<'a>[src]

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> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,