f31522130f
Build system (5 gaps hardened): - COOKBOOK_OFFLINE defaults to true (fork-mode) - normalize_patch handles diff -ruN format - New 'repo validate-patches' command (25/25 relibc patches) - 14 patched Qt/Wayland/display recipes added to protected list - relibc archive regenerated with current patch chain Boot fixes (fixable): - Full ISO EFI partition: 16 MiB → 1 MiB (matches mini, BIOS hardcoded 2 MiB offset) - D-Bus system bus: absolute /usr/bin/dbus-daemon path (was skipped) - redbear-sessiond: absolute /usr/bin/redbear-sessiond path (was skipped) - daemon framework: silenced spurious INIT_NOTIFY warnings for oneshot_async services (P0-daemon-silence-init-notify.patch) - udev-shim: demoted INIT_NOTIFY warning to INFO (expected for oneshot_async) - relibc: comprehensive named semaphores (sem_open/close/unlink) replacing upstream todo!() stubs - greeterd: Wayland socket timeout 15s → 30s (compositor DRM wait) - greeter-ui: built and linked (header guard unification, sem_compat stubs removed) - mc: un-ignored in both configs, fixed glib/libiconv/pcre2 transitive deps - greeter config: removed stale keymapd dependency from display/greeter services - prefix toolchain: relibc headers synced, _RELIBC_STDLIB_H guard unified Unfixable (diagnosed, upstream): - i2c-hidd: abort on no-I2C-hardware (QEMU) — process::exit → relibc abort - kded6/greeter-ui: page fault 0x8 — Qt library null deref - Thread panics fd != -1 — Rust std library on Redox - DHCP timeout / eth0 MAC — QEMU user-mode networking - hwrngd/thermald — no hardware RNG/thermal in VM - live preload allocation — BIOS memory fragmentation, continues on demand
137 lines
2.5 KiB
QML
137 lines
2.5 KiB
QML
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
import QtQuick
|
|
import QtQuick.Shapes
|
|
|
|
ControlledShape {
|
|
delegate: [
|
|
PathMove { x: p0.cx; y: p0.cy },
|
|
PathQuad { x: p1.cx; y: p1.cy; controlX: c0.cx; controlY: c0.cy },
|
|
PathQuad { x: p2.cx; y: p2.cy; controlX: c1.cx; controlY: c1.cy },
|
|
PathQuad { x: p0.cx; y: p0.cy; controlX: c2.cx; controlY: c2.cy },
|
|
PathMove { x: p3.cx; y: p3.cy },
|
|
PathQuad { x: p4.cx; y: p4.cy; controlX: c3.cx; controlY: c3.cy },
|
|
PathQuad { x: p5.cx; y: p5.cy; controlX: c4.cx; controlY: c4.cy },
|
|
PathQuad { x: p3.cx; y: p3.cy; controlX: c5.cx; controlY: c5.cy }
|
|
]
|
|
|
|
ControlPoint {
|
|
id: p0
|
|
cx: 600
|
|
cy: 200
|
|
}
|
|
ControlPoint {
|
|
id: c0
|
|
color: "blue"
|
|
cx: 1000
|
|
cy: 600
|
|
}
|
|
ControlPoint {
|
|
id: p1
|
|
cx: 600
|
|
cy: 1000
|
|
}
|
|
ControlPoint {
|
|
id: c1
|
|
color: "blue"
|
|
cx: 200
|
|
cy: 1200
|
|
}
|
|
ControlPoint {
|
|
id: p2
|
|
cx: 200
|
|
cy: 600
|
|
}
|
|
ControlPoint {
|
|
id: c2
|
|
color: "blue"
|
|
cx: 200
|
|
cy: 200
|
|
}
|
|
|
|
ControlPoint {
|
|
id: p3
|
|
cx: 1000
|
|
cy: 200
|
|
}
|
|
ControlPoint {
|
|
id: c3
|
|
color: "blue"
|
|
cx: 1400
|
|
cy: 600
|
|
}
|
|
ControlPoint {
|
|
id: p4
|
|
cx: 1000
|
|
cy: 1000
|
|
}
|
|
ControlPoint {
|
|
id: c4
|
|
color: "blue"
|
|
cx: 600
|
|
cy: 1200
|
|
}
|
|
ControlPoint {
|
|
id: p5
|
|
cx: 600
|
|
cy: 600
|
|
}
|
|
ControlPoint {
|
|
id: c5
|
|
color: "blue"
|
|
cx: 200
|
|
cy: -200
|
|
}
|
|
|
|
|
|
Text {
|
|
anchors.centerIn: p0
|
|
text: "p0"
|
|
}
|
|
Text {
|
|
anchors.centerIn: p1
|
|
text: "p1"
|
|
}
|
|
Text {
|
|
anchors.centerIn: p2
|
|
text: "p2"
|
|
}
|
|
Text {
|
|
anchors.centerIn: p3
|
|
text: "p3"
|
|
}
|
|
Text {
|
|
anchors.centerIn: p4
|
|
text: "p4"
|
|
}
|
|
Text {
|
|
anchors.centerIn: p5
|
|
text: "p5"
|
|
}
|
|
Text {
|
|
anchors.centerIn: c0
|
|
text: "c0"
|
|
}
|
|
Text {
|
|
anchors.centerIn: c1
|
|
text: "c1"
|
|
}
|
|
Text {
|
|
anchors.centerIn: c2
|
|
text: "c2"
|
|
}
|
|
Text {
|
|
anchors.centerIn: c3
|
|
text: "c3"
|
|
}
|
|
Text {
|
|
anchors.centerIn: c4
|
|
text: "c4"
|
|
}
|
|
Text {
|
|
anchors.centerIn: c5
|
|
text: "c5"
|
|
}
|
|
}
|