Trait zng_view::extensions::AsyncBlobRasterizer

source ·
pub trait AsyncBlobRasterizer: Send + Any {
    // Required method
    fn rasterize(&mut self, args: &mut BlobRasterizerArgs<'_>);
}
Expand description

Snapshot of a BlobExtension that can render/copy pixels.

Required Methods§

source

fn rasterize(&mut self, args: &mut BlobRasterizerArgs<'_>)

Rasterize the requests addressed for this rasterizer.

Note that all requests (for all rasterizers) is shared here, the rasterizer must find their own requests and push responses in the args.

Implementors§