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

Provided Methods§

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§