pub trait GLAreaImpl: GLAreaImplExt + WidgetImpl {
    // Provided methods
    fn create_context(&self) -> Option<GLContext> { ... }
    fn render(&self, context: &GLContext) -> bool { ... }
    fn resize(&self, width: i32, height: i32) { ... }
}

Provided Methods§

source

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

source

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

source

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

Implementors§