mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 13:51:13 +00:00
[reorg]: Move the rendering backends into internal
This commit is contained in:
parent
e6b24bceec
commit
a3b86690ff
75 changed files with 77 additions and 74 deletions
16
Cargo.toml
16
Cargo.toml
|
@ -22,17 +22,17 @@ members = [
|
|||
'helper_crates/const-field-offset',
|
||||
'helper_crates/vtable',
|
||||
'helper_crates/vtable/macro',
|
||||
'internal/backends/gl',
|
||||
'internal/backends/mcu',
|
||||
'internal/backends/qt',
|
||||
'internal/backends/selector',
|
||||
'internal/backends/testing',
|
||||
'internal/common',
|
||||
'internal/compiler',
|
||||
'internal/compiler/parser_test_macro',
|
||||
'internal/core',
|
||||
'internal/core-macros',
|
||||
'internal/interpreter',
|
||||
'sixtyfps_runtime/rendering_backends/default',
|
||||
'sixtyfps_runtime/rendering_backends/gl',
|
||||
'sixtyfps_runtime/rendering_backends/mcu',
|
||||
'sixtyfps_runtime/rendering_backends/qt',
|
||||
'sixtyfps_runtime/rendering_backends/testing',
|
||||
'tests/doctests',
|
||||
'tests/driver/cpp',
|
||||
'tests/driver/driverlib',
|
||||
|
@ -57,12 +57,12 @@ default-members = [
|
|||
'examples/printerdemo/rust',
|
||||
'examples/slide_puzzle',
|
||||
'examples/todo/rust',
|
||||
'internal/backends/gl',
|
||||
'internal/backends/qt',
|
||||
'internal/backends/selector',
|
||||
'internal/compiler',
|
||||
'internal/core',
|
||||
'internal/interpreter',
|
||||
'sixtyfps_runtime/rendering_backends/default',
|
||||
'sixtyfps_runtime/rendering_backends/gl',
|
||||
'sixtyfps_runtime/rendering_backends/qt',
|
||||
'tests/doctests',
|
||||
'tests/driver/interpreter',
|
||||
'tests/driver/nodejs',
|
||||
|
|
|
@ -22,20 +22,20 @@ crate-type = ["lib", "cdylib"]
|
|||
# Note, these features need to be kept in sync (along with their defaults) in
|
||||
# the C++ crate's CMakeLists.txt
|
||||
[features]
|
||||
backend-gl = ["sixtyfps-rendering-backend-default/sixtyfps-rendering-backend-gl"]
|
||||
backend-qt = ["sixtyfps-rendering-backend-default/sixtyfps-rendering-backend-qt"]
|
||||
backend-gl = ["sixtyfps-rendering-backend-selector/sixtyfps-rendering-backend-gl"]
|
||||
backend-qt = ["sixtyfps-rendering-backend-selector/sixtyfps-rendering-backend-qt"]
|
||||
interpreter = ["sixtyfps-interpreter"]
|
||||
testing = ["sixtyfps-rendering-backend-testing"] # Enable some function used by the integration tests
|
||||
wayland = ["sixtyfps-rendering-backend-default/wayland"]
|
||||
x11 = ["sixtyfps-rendering-backend-default/x11"]
|
||||
wayland = ["sixtyfps-rendering-backend-selector/wayland"]
|
||||
x11 = ["sixtyfps-rendering-backend-selector/x11"]
|
||||
|
||||
default = ["backend-gl", "x11", "backend-qt"]
|
||||
|
||||
[dependencies]
|
||||
sixtyfps-corelib = { version = "=0.2.0", path="../../internal/core", features = ["ffi"] }
|
||||
sixtyfps-interpreter = { version = "=0.2.0", path="../../internal/interpreter", default-features = false, features = ["ffi"], optional = true }
|
||||
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||
sixtyfps-rendering-backend-testing = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/testing", optional = true }
|
||||
sixtyfps-rendering-backend-selector = { version = "=0.2.0", path="../../internal/backends/selector" }
|
||||
sixtyfps-rendering-backend-testing = { version = "=0.2.0", path="../../internal/backends/testing", optional = true }
|
||||
|
||||
[build-dependencies]
|
||||
anyhow = "1.0"
|
||||
|
|
|
@ -164,7 +164,7 @@ fn gen_corelib(
|
|||
.collect();
|
||||
|
||||
let mut crate_dir = root_dir.to_owned();
|
||||
crate_dir.extend(["sixtyfps_runtime", "corelib"].iter());
|
||||
crate_dir.extend(["internal", "core"].iter());
|
||||
|
||||
ensure_cargo_rerun_for_crate(&crate_dir, dependencies)?;
|
||||
|
||||
|
@ -431,7 +431,7 @@ fn gen_backend_qt(
|
|||
);
|
||||
|
||||
let mut crate_dir = root_dir.to_owned();
|
||||
crate_dir.extend(["sixtyfps_runtime", "rendering_backends", "qt"].iter());
|
||||
crate_dir.extend(["internal", "backends", "qt"].iter());
|
||||
|
||||
ensure_cargo_rerun_for_crate(&crate_dir, dependencies)?;
|
||||
|
||||
|
@ -487,7 +487,7 @@ fn gen_interpreter(
|
|||
.collect();
|
||||
let mut crate_dir = root_dir.to_owned();
|
||||
|
||||
crate_dir.extend(["sixtyfps_runtime", "interpreter"].iter());
|
||||
crate_dir.extend(["internal", "interpreter"].iter());
|
||||
ensure_cargo_rerun_for_crate(&crate_dir, dependencies)?;
|
||||
|
||||
// Generate a header file with some public API (enums, etc.)
|
||||
|
|
|
@ -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()
|
||||
}
|
||||
|
||||
|
|
|
@ -17,18 +17,18 @@ keywords = ["gui", "toolkit", "graphics", "design", "ui"]
|
|||
path = "lib.rs"
|
||||
|
||||
[features]
|
||||
backend-gl = ["sixtyfps-rendering-backend-default/sixtyfps-rendering-backend-gl", "std"]
|
||||
backend-qt = ["sixtyfps-rendering-backend-default/sixtyfps-rendering-backend-qt", "std"]
|
||||
backend-gl = ["sixtyfps-rendering-backend-selector/sixtyfps-rendering-backend-gl", "std"]
|
||||
backend-qt = ["sixtyfps-rendering-backend-selector/sixtyfps-rendering-backend-qt", "std"]
|
||||
std = ["sixtyfps-corelib/std"]
|
||||
wayland = ["sixtyfps-rendering-backend-default/wayland", "std"]
|
||||
x11 = ["sixtyfps-rendering-backend-default/x11", "std"]
|
||||
wayland = ["sixtyfps-rendering-backend-selector/wayland", "std"]
|
||||
x11 = ["sixtyfps-rendering-backend-selector/x11", "std"]
|
||||
|
||||
default = ["backend-gl", "x11", "backend-qt"]
|
||||
|
||||
[dependencies]
|
||||
sixtyfps-corelib = { version = "=0.2.0", path="../../internal/core", default-features = false }
|
||||
sixtyfps-macros = { version = "=0.2.0", path = "sixtyfps-macros" }
|
||||
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||
sixtyfps-rendering-backend-selector = { version = "=0.2.0", path="../../internal/backends/selector" }
|
||||
|
||||
const-field-offset = { version = "0.1.2", path = "../../helper_crates/const-field-offset" }
|
||||
vtable = { version = "0.1.5", path = "../../helper_crates/vtable" }
|
||||
|
|
|
@ -246,7 +246,7 @@ pub use sixtyfps_corelib::timers::{Timer, TimerMode};
|
|||
#[doc(hidden)]
|
||||
#[cfg(feature = "std")]
|
||||
pub fn register_font_from_memory(data: &'static [u8]) -> Result<(), Box<dyn std::error::Error>> {
|
||||
sixtyfps_rendering_backend_default::backend().register_font_from_memory(data)
|
||||
sixtyfps_rendering_backend_selector::backend().register_font_from_memory(data)
|
||||
}
|
||||
|
||||
/// This function can be used to register a custom TrueType font with SixtyFPS,
|
||||
|
@ -257,7 +257,7 @@ pub fn register_font_from_memory(data: &'static [u8]) -> Result<(), Box<dyn std:
|
|||
pub fn register_font_from_path<P: AsRef<std::path::Path>>(
|
||||
path: P,
|
||||
) -> Result<(), Box<dyn std::error::Error>> {
|
||||
sixtyfps_rendering_backend_default::backend().register_font_from_path(path.as_ref())
|
||||
sixtyfps_rendering_backend_selector::backend().register_font_from_path(path.as_ref())
|
||||
}
|
||||
|
||||
/// internal re_exports used by the macro generated
|
||||
|
@ -299,7 +299,7 @@ pub mod re_exports {
|
|||
pub use sixtyfps_corelib::ComponentVTable_static;
|
||||
pub use sixtyfps_corelib::SharedString;
|
||||
pub use sixtyfps_corelib::SharedVector;
|
||||
pub use sixtyfps_rendering_backend_default::native_widgets::*;
|
||||
pub use sixtyfps_rendering_backend_selector::native_widgets::*;
|
||||
pub use vtable::{self, *};
|
||||
}
|
||||
|
||||
|
@ -430,14 +430,14 @@ pub mod internal {
|
|||
/// Creates a new window to render components in.
|
||||
#[doc(hidden)]
|
||||
pub fn create_window() -> re_exports::WindowRc {
|
||||
sixtyfps_rendering_backend_default::backend().create_window()
|
||||
sixtyfps_rendering_backend_selector::backend().create_window()
|
||||
}
|
||||
|
||||
/// Enters the main event loop. This is necessary in order to receive
|
||||
/// events from the windowing system in order to render to the screen
|
||||
/// and react to user input.
|
||||
pub fn run_event_loop() {
|
||||
sixtyfps_rendering_backend_default::backend()
|
||||
sixtyfps_rendering_backend_selector::backend()
|
||||
.run_event_loop(sixtyfps_corelib::backend::EventLoopQuitBehavior::QuitOnLastWindowClosed);
|
||||
}
|
||||
|
||||
|
@ -446,7 +446,7 @@ pub fn run_event_loop() {
|
|||
/// it will return immediately and once control is passed back to the event loop,
|
||||
/// the initial call to [`run_event_loop()`] will return.
|
||||
pub fn quit_event_loop() {
|
||||
sixtyfps_rendering_backend_default::backend().quit_event_loop();
|
||||
sixtyfps_rendering_backend_selector::backend().quit_event_loop();
|
||||
}
|
||||
|
||||
/// This module contains functions useful for unit tests
|
||||
|
|
|
@ -202,9 +202,9 @@ pub fn compile_with_config(
|
|||
|
||||
if std::env::var_os("SIXTYFPS_STYLE").is_none() && compiler_config.style.is_none() {
|
||||
compiler_config.style = std::env::var_os("OUT_DIR").and_then(|path| {
|
||||
// Same logic as in sixtyfps-rendering-backend-default's build script to get the path
|
||||
// Same logic as in sixtyfps-rendering-backend-selector's build script to get the path
|
||||
let path = Path::new(&path).parent()?.parent()?.join("SIXTYFPS_DEFAULT_STYLE.txt");
|
||||
// unfortunately, if for some reason the file is changed by the sixtyfps-rendering-backend-default's build script,
|
||||
// unfortunately, if for some reason the file is changed by the sixtyfps-rendering-backend-selector's build script,
|
||||
// it is changed after cargo decide to re-run this build script or not. So that means one will need two build
|
||||
// to settle the right thing.
|
||||
rerun_if_changed = format!("cargo:rerun-if-changed={}", path.display());
|
||||
|
|
|
@ -340,7 +340,7 @@ pub fn sixtyfps(stream: TokenStream) -> TokenStream {
|
|||
CompilerConfiguration::new(sixtyfps_compilerlib::generator::OutputFormat::Rust);
|
||||
|
||||
if std::env::var_os("SIXTYFPS_STYLE").is_none() {
|
||||
// This file is written by the sixtyfps-rendering-backend-default's built script.
|
||||
// This file is written by the sixtyfps-rendering-backend-selector's built script.
|
||||
// It is in the target/xxx/build directory
|
||||
let target_path = match std::env::var_os("OUT_DIR") {
|
||||
Some(out_dir) => Some(
|
||||
|
|
|
@ -10,7 +10,11 @@ The testing instructions are in the [testing.md](./testing.md) file.
|
|||
A set of crates that are somehow not strictly related to sixtyfps, and that could be moved to
|
||||
their own repository and have their own version release at some point.
|
||||
|
||||
### `sixtyfps_compiler`
|
||||
### `internal`
|
||||
|
||||
`internal` contains code that is not meant to be used directly by a user of sixtyfps.
|
||||
|
||||
#### `compiler`
|
||||
|
||||
The main library for the compiler for .60.
|
||||
|
||||
|
@ -19,13 +23,13 @@ Nothing in there should depends on the runtime crates.
|
|||
There is a **`test`** subdirectory that contains the syntax tests.
|
||||
These tests allow to test the proper error conditions.
|
||||
|
||||
### `sixtyfps_runtime`
|
||||
#### Runtime libraries
|
||||
|
||||
The library crates that are used at runtime.
|
||||
|
||||
* **`corelib`** is the main library. It is meant to be used for all front-ends. Ideally it should
|
||||
* **`core`** is the main library. It is meant to be used for all front-ends. Ideally it should
|
||||
be kept as small as possible. **`corelib-macros`** contains some procedural macro used by core library.
|
||||
* **`rendering_backends`** contains the different backend for the different platform, separated from
|
||||
* **`backends`** contains the different backend for the different platform, separated from
|
||||
core library. Currently there is just the gl backend
|
||||
* **`interpreter`** is the library used by the more dynamic languages backend to compile and
|
||||
interpret .60 files. It links both against core library and the compiler lib
|
||||
|
|
|
@ -863,4 +863,3 @@ If the Library as you received it specifies that a proxy can decide
|
|||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the Library.
|
||||
|
|
@ -893,4 +893,3 @@ we thank the authors who made this possible:
|
|||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*! Generated with Qt5 and
|
||||
```sh
|
||||
bindgen /usr/include/qt/QtCore/qnamespace.h --whitelist-type Qt::Key --whitelist-type Qt::KeyboardModifier --whitelist-type Qt::AlignmentFlag --whitelist-type Qt::TextFlag --whitelist-type Qt::FillRule --whitelist-type Qt::CursorShape -o sixtyfps_runtime/rendering_backends/qt/key_generated.rs -- -I /usr/include/qt -xc++
|
||||
bindgen /usr/include/qt/QtCore/qnamespace.h --whitelist-type Qt::Key --whitelist-type Qt::KeyboardModifier --whitelist-type Qt::AlignmentFlag --whitelist-type Qt::TextFlag --whitelist-type Qt::FillRule --whitelist-type Qt::CursorShape -o internal/backends/qt/key_generated.rs -- -I /usr/include/qt -xc++
|
||||
```
|
||||
then add licence header and this doc
|
||||
*/
|
|
@ -2,7 +2,7 @@
|
|||
# SPDX-License-Identifier: (GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)
|
||||
|
||||
[package]
|
||||
name = "sixtyfps-rendering-backend-default"
|
||||
name = "sixtyfps-rendering-backend-selector"
|
||||
version = "0.2.0"
|
||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||
edition = "2021"
|
|
@ -26,7 +26,7 @@ fn main() {
|
|||
|
||||
let out_dir = std::env::var_os("OUT_DIR").unwrap();
|
||||
// out_dir is something like
|
||||
// <target_dir>/build/sixtyfps-rendering-backend-default-1fe5c4ab61eb0584/out
|
||||
// <target_dir>/build/sixtyfps-rendering-backend-selector-1fe5c4ab61eb0584/out
|
||||
// and we want to write to a common directory, so write in the build/ dir
|
||||
let target_path =
|
||||
Path::new(&out_dir).parent().unwrap().parent().unwrap().join("SIXTYFPS_DEFAULT_STYLE.txt");
|
|
@ -66,8 +66,9 @@ wasm-bindgen = { version = "0.2" }
|
|||
web_sys = { version = "0.3", package = "web-sys", features=["console", "CanvasRenderingContext2d", "TextMetrics", "HtmlSpanElement"] }
|
||||
|
||||
[dev-dependencies]
|
||||
sixtyfps = { version = "=0.2.0", path = "../../api/sixtyfps-rs", default-features = false, features = ["std"] }
|
||||
sixtyfps-rendering-backend-testing = { path="../backends/testing" }
|
||||
|
||||
image = { version = "0.23.14", default-features = false, features = [ "png" ] }
|
||||
pin-weak = "1"
|
||||
tiny-skia = "0.6.1"
|
||||
sixtyfps = { version = "=0.2.0", path = "../../api/sixtyfps-rs", default-features = false, features = ["std"] }
|
||||
sixtyfps-rendering-backend-testing = { path="../rendering_backends/testing" }
|
||||
|
|
|
@ -17,19 +17,19 @@ keywords = ["gui", "toolkit", "graphics", "design", "ui"]
|
|||
path = "lib.rs"
|
||||
|
||||
[features]
|
||||
backend-gl = ["sixtyfps-rendering-backend-default/sixtyfps-rendering-backend-gl"]
|
||||
backend-qt = ["sixtyfps-rendering-backend-default/sixtyfps-rendering-backend-qt"]
|
||||
backend-gl = ["sixtyfps-rendering-backend-selector/sixtyfps-rendering-backend-gl"]
|
||||
backend-qt = ["sixtyfps-rendering-backend-selector/sixtyfps-rendering-backend-qt"]
|
||||
display-diagnostics = ["sixtyfps-compilerlib/display-diagnostics"]
|
||||
ffi = ["spin_on", "sixtyfps-corelib/ffi"]
|
||||
wayland = ["sixtyfps-rendering-backend-default/wayland"]
|
||||
x11 = ["sixtyfps-rendering-backend-default/x11"]
|
||||
wayland = ["sixtyfps-rendering-backend-selector/wayland"]
|
||||
x11 = ["sixtyfps-rendering-backend-selector/x11"]
|
||||
|
||||
default = ["backend-gl", "x11", "backend-qt"]
|
||||
|
||||
[dependencies]
|
||||
sixtyfps-compilerlib = { version = "=0.2.0", path = "../compiler" }
|
||||
sixtyfps-corelib = { version = "=0.2.0", path = "../core", features = ["rtti"] }
|
||||
sixtyfps-rendering-backend-default = { version = "=0.2.0", path = "../../sixtyfps_runtime/rendering_backends/default" }
|
||||
sixtyfps-rendering-backend-selector = { version = "=0.2.0", path = "../../internal/backends/selector" }
|
||||
|
||||
vtable = { version = "0.1.1", path="../../helper_crates/vtable" }
|
||||
|
||||
|
@ -44,10 +44,10 @@ version = "0.1"
|
|||
optional = true
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
sixtyfps-rendering-backend-gl = { version = "=0.2.0", path = "../../sixtyfps_runtime/rendering_backends/gl" }
|
||||
sixtyfps-rendering-backend-gl = { version = "=0.2.0", path = "../../internal/backends/gl" }
|
||||
|
||||
[dev-dependencies]
|
||||
sixtyfps-rendering-backend-testing = { path = "../../sixtyfps_runtime/rendering_backends/testing" }
|
||||
sixtyfps-rendering-backend-testing = { path = "../../internal/backends/testing" }
|
||||
|
||||
spin_on = "0.1"
|
||||
|
||||
|
|
|
@ -988,7 +988,7 @@ impl ComponentHandle for ComponentInstance {
|
|||
|
||||
fn run(&self) {
|
||||
self.show();
|
||||
sixtyfps_rendering_backend_default::backend().run_event_loop(
|
||||
sixtyfps_rendering_backend_selector::backend().run_event_loop(
|
||||
sixtyfps_corelib::backend::EventLoopQuitBehavior::QuitOnLastWindowClosed,
|
||||
);
|
||||
self.hide();
|
||||
|
@ -1057,7 +1057,7 @@ pub enum InvokeCallbackError {
|
|||
/// events from the windowing system in order to render to the screen
|
||||
/// and react to user input.
|
||||
pub fn run_event_loop() {
|
||||
sixtyfps_rendering_backend_default::backend()
|
||||
sixtyfps_rendering_backend_selector::backend()
|
||||
.run_event_loop(sixtyfps_corelib::backend::EventLoopQuitBehavior::QuitOnLastWindowClosed);
|
||||
}
|
||||
|
||||
|
|
|
@ -348,11 +348,11 @@ impl<'id> ComponentDescription<'id> {
|
|||
#[cfg(target_arch = "wasm32")] canvas_id: String,
|
||||
) -> vtable::VRc<ComponentVTable, ErasedComponentBox> {
|
||||
#[cfg(not(target_arch = "wasm32"))]
|
||||
let window = sixtyfps_rendering_backend_default::backend().create_window();
|
||||
let window = sixtyfps_rendering_backend_selector::backend().create_window();
|
||||
#[cfg(target_arch = "wasm32")]
|
||||
let window = {
|
||||
// Ensure that the backend is initialized
|
||||
sixtyfps_rendering_backend_default::backend();
|
||||
sixtyfps_rendering_backend_selector::backend();
|
||||
sixtyfps_rendering_backend_gl::create_gl_window_with_canvas_id(canvas_id)
|
||||
};
|
||||
self.create_with_existing_window(&window)
|
||||
|
@ -688,7 +688,7 @@ pub async fn load(
|
|||
{
|
||||
if compiler_config.style.is_none() && std::env::var("SIXTYFPS_STYLE").is_err() {
|
||||
// Defaults to native if it exists:
|
||||
compiler_config.style = Some(if sixtyfps_rendering_backend_default::HAS_NATIVE_STYLE {
|
||||
compiler_config.style = Some(if sixtyfps_rendering_backend_selector::HAS_NATIVE_STYLE {
|
||||
"native".to_owned()
|
||||
} else {
|
||||
"fluent".to_owned()
|
||||
|
@ -758,7 +758,7 @@ pub(crate) fn generate_component<'id>(
|
|||
Next::push(rtti);
|
||||
}
|
||||
}
|
||||
sixtyfps_rendering_backend_default::NativeWidgets::push(&mut rtti);
|
||||
sixtyfps_rendering_backend_selector::NativeWidgets::push(&mut rtti);
|
||||
}
|
||||
|
||||
struct TreeBuilder<'id> {
|
||||
|
|
|
@ -107,7 +107,7 @@ pub fn instantiate(description: &CompiledGlobal) -> (String, Pin<Rc<dyn GlobalCo
|
|||
}
|
||||
}
|
||||
}
|
||||
let g = sixtyfps_rendering_backend_default::NativeGlobals::instantiate(
|
||||
let g = sixtyfps_rendering_backend_selector::NativeGlobals::instantiate(
|
||||
element.native_class.class_name.as_ref(),
|
||||
);
|
||||
(name.clone(), g)
|
||||
|
|
|
@ -87,7 +87,7 @@ pub use api::*;
|
|||
pub(crate) fn register_font_from_path<P: AsRef<std::path::Path>>(
|
||||
path: P,
|
||||
) -> Result<(), Box<dyn std::error::Error>> {
|
||||
sixtyfps_rendering_backend_default::backend().register_font_from_path(path.as_ref())
|
||||
sixtyfps_rendering_backend_selector::backend().register_font_from_path(path.as_ref())
|
||||
}
|
||||
|
||||
/// (Re-export from corelib.)
|
||||
|
|
|
@ -103,5 +103,5 @@ EOT
|
|||
cargo about generate about.hbs -o $target_path/index.html
|
||||
|
||||
if [ "$2x" == "--with-qtx" ]; then
|
||||
cp sixtyfps_runtime/rendering_backends/qt/LICENSE.QT sixtyfps_runtime/rendering_backends/qt/QtThirdPartySoftware_Listing.txt $target_path/
|
||||
cp internal/backends/qt/LICENSE.QT internal/backends/qt/QtThirdPartySoftware_Listing.txt $target_path/
|
||||
fi
|
||||
|
|
|
@ -7,11 +7,11 @@ cargo publish --manifest-path internal/core-macros/Cargo.toml
|
|||
cargo publish --manifest-path internal/compiler/Cargo.toml
|
||||
cargo publish --manifest-path internal/core/Cargo.toml
|
||||
cargo publish --manifest-path api/sixtyfps-rs/sixtyfps-macros/Cargo.toml
|
||||
cargo publish --manifest-path sixtyfps_runtime/rendering_backends/gl/Cargo.toml --features x11
|
||||
cargo publish --manifest-path internal/backends/gl/Cargo.toml --features x11
|
||||
cargo publish --manifest-path api/sixtyfps-rs/sixtyfps-build/Cargo.toml
|
||||
cargo publish --manifest-path sixtyfps_runtime/rendering_backends/qt/Cargo.toml
|
||||
cargo publish --manifest-path internal/backends/qt/Cargo.toml
|
||||
sleep 30
|
||||
cargo publish --manifest-path sixtyfps_runtime/rendering_backends/default/Cargo.toml --features x11
|
||||
cargo publish --manifest-path internal/backends/selector/Cargo.toml --features x11
|
||||
sleep 30
|
||||
cargo publish --manifest-path internal/interpreter/Cargo.toml
|
||||
cargo publish --manifest-path api/sixtyfps-rs/Cargo.toml
|
||||
|
|
|
@ -15,7 +15,7 @@ name = "test-driver-interpreter"
|
|||
|
||||
[dev-dependencies]
|
||||
sixtyfps-interpreter = { path = "../../../internal/interpreter", default-features = false, features = ["display-diagnostics"] }
|
||||
sixtyfps-rendering-backend-testing = { path = "../../../sixtyfps_runtime/rendering_backends/testing" }
|
||||
sixtyfps-rendering-backend-testing = { path = "../../../internal/backends/testing" }
|
||||
|
||||
itertools = "0.10"
|
||||
lazy_static = "1.4.0"
|
||||
|
|
|
@ -18,7 +18,7 @@ build-time = ["sixtyfps-compilerlib", "spin_on"]
|
|||
|
||||
[dependencies]
|
||||
sixtyfps = { path = "../../../api/sixtyfps-rs" }
|
||||
sixtyfps-rendering-backend-testing = { path = "../../../sixtyfps_runtime/rendering_backends/testing" }
|
||||
sixtyfps-rendering-backend-testing = { path = "../../../internal/backends/testing" }
|
||||
|
||||
[build-dependencies]
|
||||
sixtyfps-compilerlib = { path = "../../../internal/compiler", features = ["rust", "display-diagnostics"], optional = true }
|
||||
|
|
|
@ -33,7 +33,7 @@ default = ["sixtyfps-backend-qt", "sixtyfps-backend-gl", "x11"]
|
|||
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../internal/compiler"}
|
||||
sixtyfps-corelib = { version = "=0.2.0", path = "../../internal/core"}
|
||||
sixtyfps-interpreter = { version = "=0.2.0", path = "../../internal/interpreter", default-features = false }
|
||||
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||
sixtyfps-rendering-backend-selector = { version = "=0.2.0", path="../../internal/backends/selector" }
|
||||
|
||||
clap = { version = "3.0.5", features=["derive", "wrap_help"] }
|
||||
crossbeam-channel = "0.5" # must match the version used by lsp-server
|
||||
|
|
|
@ -46,7 +46,7 @@ unsafe impl Sync for FutureRunner {}
|
|||
|
||||
impl Wake for FutureRunner {
|
||||
fn wake(self: Arc<Self>) {
|
||||
sixtyfps_rendering_backend_default::backend().post_event(Box::new(move || {
|
||||
sixtyfps_rendering_backend_selector::backend().post_event(Box::new(move || {
|
||||
let waker = self.clone().into();
|
||||
let mut cx = std::task::Context::from_waker(&waker);
|
||||
let mut fut_opt = self.fut.lock().unwrap();
|
||||
|
@ -91,7 +91,7 @@ pub fn start_ui_event_loop() {
|
|||
|
||||
if *state_requested == RequestedGuiEventLoopState::StartLoop {
|
||||
// Send an event so that once the loop is started, we notify the LSP thread that it can send more events
|
||||
sixtyfps_rendering_backend_default::backend().post_event(Box::new(|| {
|
||||
sixtyfps_rendering_backend_selector::backend().post_event(Box::new(|| {
|
||||
let mut state_request = GUI_EVENT_LOOP_STATE_REQUEST.lock().unwrap();
|
||||
if *state_request == RequestedGuiEventLoopState::StartLoop {
|
||||
*state_request = RequestedGuiEventLoopState::LoopStated;
|
||||
|
@ -101,7 +101,7 @@ pub fn start_ui_event_loop() {
|
|||
}
|
||||
}
|
||||
|
||||
sixtyfps_rendering_backend_default::backend()
|
||||
sixtyfps_rendering_backend_selector::backend()
|
||||
.run_event_loop(sixtyfps_corelib::backend::EventLoopQuitBehavior::QuitOnlyExplicitly);
|
||||
}
|
||||
|
||||
|
@ -114,8 +114,8 @@ pub fn quit_ui_event_loop() {
|
|||
GUI_EVENT_LOOP_NOTIFIER.notify_one();
|
||||
}
|
||||
|
||||
sixtyfps_rendering_backend_default::backend().post_event(Box::new(|| {
|
||||
sixtyfps_rendering_backend_default::backend().quit_event_loop();
|
||||
sixtyfps_rendering_backend_selector::backend().post_event(Box::new(|| {
|
||||
sixtyfps_rendering_backend_selector::backend().quit_event_loop();
|
||||
}));
|
||||
|
||||
// Make sure then sender channel gets dropped
|
||||
|
|
|
@ -24,7 +24,7 @@ default = ["sixtyfps-backend-qt", "sixtyfps-backend-gl", "x11"]
|
|||
[dependencies]
|
||||
sixtyfps-corelib = { version = "=0.2.0", path="../../internal/core" }
|
||||
sixtyfps-interpreter = { version = "=0.2.0", path = "../../internal/interpreter", default-features = false, features = ["display-diagnostics"] }
|
||||
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||
sixtyfps-rendering-backend-selector = { version = "=0.2.0", path="../../internal/backends/selector" }
|
||||
|
||||
vtable = { version = "0.1", path="../../helper_crates/vtable" }
|
||||
|
||||
|
|
|
@ -193,7 +193,7 @@ fn init_dialog(instance: &ComponentInstance) {
|
|||
instance
|
||||
.set_callback(&cb, move |_| {
|
||||
EXIT_CODE.store(exit_code, std::sync::atomic::Ordering::Relaxed);
|
||||
sixtyfps_rendering_backend_default::backend().quit_event_loop();
|
||||
sixtyfps_rendering_backend_selector::backend().quit_event_loop();
|
||||
Default::default()
|
||||
})
|
||||
.unwrap();
|
||||
|
@ -348,7 +348,7 @@ unsafe impl Sync for FutureRunner {}
|
|||
|
||||
impl Wake for FutureRunner {
|
||||
fn wake(self: Arc<Self>) {
|
||||
sixtyfps_rendering_backend_default::backend().post_event(Box::new(move || {
|
||||
sixtyfps_rendering_backend_selector::backend().post_event(Box::new(move || {
|
||||
let waker = self.clone().into();
|
||||
let mut cx = std::task::Context::from_waker(&waker);
|
||||
let mut fut_opt = self.fut.lock().unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue