[reorg]: Move the rendering backends into internal

This commit is contained in:
Tobias Hunger 2022-01-31 12:37:57 +01:00 committed by Tobias Hunger
parent e6b24bceec
commit a3b86690ff
75 changed files with 77 additions and 74 deletions

View file

@ -6,14 +6,14 @@
use core::ffi::c_void;
use sixtyfps_corelib::window::ffi::WindowRcOpaque;
use sixtyfps_corelib::window::WindowRc;
use sixtyfps_rendering_backend_default::backend;
use sixtyfps_rendering_backend_selector::backend;
#[doc(hidden)]
#[cold]
pub fn use_modules() -> usize {
#[cfg(feature = "sixtyfps-interpreter")]
sixtyfps_interpreter::use_modules();
sixtyfps_rendering_backend_default::use_modules();
sixtyfps_rendering_backend_selector::use_modules();
sixtyfps_corelib::use_modules()
}