Function conrod::backend::piston::draw::primitives [] [src]

pub fn primitives<'a, P, G, T, Img, C, F>(
    primitives: P,
    context: Context,
    graphics: &'a mut G,
    text_texture_cache: &'a mut T,
    glyph_cache: &'a mut GlyphCache,
    image_map: &'a Map<Img>,
    cache_queued_glyphs: C,
    texture_from_image: F
) where
    P: PrimitiveWalker,
    G: Graphics<Texture = T>,
    T: ImageSize,
    C: FnMut(&mut G, &mut T, Rect<u32>, &[u8]),
    F: FnMut(&Img) -> &T, 

Render the given sequence of conrod primitive widgets.

Params: