slint/api/sixtyfps-rs/lib.rs
Simon Hausmann a2c5e66bee Rename gl renderer backend package
Use a full prefixed name (sixtyfps_rendering_backend_gl) to ensure that
the created static lib can be installed without file conflicts (libgl is
not a unique name).
2020-06-04 15:30:41 +02:00

19 lines
717 B
Rust

pub use sixtyfps_rs_macro::sixtyfps;
/// internal re_exports used by the macro generated
pub mod re_exports {
pub use const_field_offset::{self, FieldOffsets};
pub use corelib::abi::datastructures::{Component, ComponentTO, ComponentVTable, ItemTreeNode};
pub use corelib::abi::primitives::*;
pub use corelib::abi::properties::Property;
pub use corelib::abi::signals::Signal;
pub use corelib::ComponentVTable_static;
pub use corelib::EvaluationContext;
pub use corelib::SharedString;
pub use once_cell::sync::Lazy;
pub use sixtyfps_rendering_backend_gl::sixtyfps_runtime_run_component_with_gl_renderer;
pub use vtable::{self, *};
}
#[cfg(doctest)]
mod compile_fail_tests;