pub trait GLAreaImplExt: ObjectSubclass {
    // Required methods
    fn parent_create_context(&self) -> Option<GLContext>;
    fn parent_render(&self, context: &GLContext) -> bool;
    fn parent_resize(&self, width: i32, height: i32);
}

Required Methods§

source

fn parent_create_context(&self) -> Option<GLContext>

source

fn parent_render(&self, context: &GLContext) -> bool

source

fn parent_resize(&self, width: i32, height: i32)

Implementors§

source§

impl<T> GLAreaImplExt for Twhere T: GLAreaImpl,