git.lucas.co / cce-graph
node-based graph editor
git clone https://git.lucas.co/cce-graph.git

commit14eb10386dd21b2077479fe340c9592c64304cd7
parentcd72a37665
authorLucas Galante <[email protected]>
date2026-07-09 10:33
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 5bfc569..3457fc5 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1327,7 +1327,7 @@ impl Application for GraphApp {
         quads.extend(self.root_window.all_rounded_quads(&self.ui_context));
     }
 
-    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: render the widget tree via the single paint path by default (scene::painter ->
         // one clipped DisplayList, drawn with GPU scissor). Set CCE_LEGACY_PAINT to fall back to
         // the legacy multi-path renderer.