pub trait DrawContextExt: 'static {
    fn begin_frame(&self, region: &Region);
    fn end_frame(&self);
    fn display(&self) -> Option<Display>;
    fn surface(&self) -> Option<Surface>;
    fn is_in_frame(&self) -> bool;
}

Required methods

Implementors