Struct slint::platform::femtovg_renderer::FemtoVGRenderer
pub struct FemtoVGRenderer { /* private fields */ }
Expand description
Use the FemtoVG renderer when implementing a custom Slint platform where you deliver events to Slint and want the scene to be rendered using OpenGL. The rendering is done using the FemtoVG library.
Implementationsยง
ยงimpl FemtoVGRenderer
impl FemtoVGRenderer
pub fn new(
opengl_context: impl OpenGLInterface + 'static
) -> Result<FemtoVGRenderer, PlatformError>
pub fn new( opengl_context: impl OpenGLInterface + 'static ) -> Result<FemtoVGRenderer, PlatformError>
Creates a new renderer that renders using OpenGL. An implementation of the OpenGLInterface trait needs to supplied.
pub fn render(&self) -> Result<(), PlatformError>
pub fn render(&self) -> Result<(), PlatformError>
Render the scene using OpenGL.
Trait Implementationsยง
ยงimpl FemtoVGRendererExt for FemtoVGRenderer
impl FemtoVGRendererExt for FemtoVGRenderer
fn render_with_post_callback( &self, post_render_cb: Option<&dyn Fn(&mut dyn ItemRenderer)> ) -> Result<(), PlatformError>
Auto Trait Implementationsยง
impl !RefUnwindSafe for FemtoVGRenderer
impl !Send for FemtoVGRenderer
impl !Sync for FemtoVGRenderer
impl Unpin for FemtoVGRenderer
impl !UnwindSafe for FemtoVGRenderer
Blanket Implementationsยง
sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
ยงimpl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
ยงfn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.ยงfn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.ยงfn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
โs vtable from &Trait
โs.ยงfn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
โs vtable from &mut Trait
โs.