system settings
git clone https://git.lucas.co/cce-system-interface.git
chore: display_list signature gains (size, scale) (cce-ui Phase 6)
Co-Authored-By: Claude Fable 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_016MjP3pGQEDLkJbV5WEmYBe
src/main.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.rs b/src/main.rs
index 5eda3fc..408191f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -303,7 +303,7 @@ impl cce_ui::engine::Application for SystemInterface {
}
}
- fn display_list(&mut self) -> Option<cce_ui::scene::paint::DisplayList> {
+ fn display_list(&mut self, _size: cce_ui::engine::LogicalSize, _scale: f64) -> Option<cce_ui::scene::paint::DisplayList> {
// Phase 3 single paint path. This app flattens its UI into a `widgets` quad list (rebuilt
// by view_rounded_quads, which runs before this), so build the DisplayList directly from
// that list — the flat-list bridge. CCE_LEGACY_PAINT falls back.