Trait flo_render_canvas::OffscreenRenderTarget[][src]

pub trait OffscreenRenderTarget {
    fn render<ActionIter>(&mut self, actions: ActionIter)
    where
        ActionIter: IntoIterator<Item = RenderAction>
;
fn realize(self) -> Vec<u8, Global>; }
Expand description

Trait implemented by FlowBetween offscreen render targets

Required methods

Sends render actions to this offscreen render target

Consumes this render target and returns the realized pixels as a byte array

Implementors