mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 13:51:13 +00:00

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).
19 lines
717 B
Rust
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;
|