0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-21 22:36:12 -05:00
This commit is contained in:
Aitor Moreno 2025-02-17 12:55:41 +01:00
parent 4ffea3c34a
commit 106b357692

View file

@ -73,6 +73,7 @@ pub(crate) struct RenderState {
// Stack of nodes pending to be rendered. // Stack of nodes pending to be rendered.
pub pending_nodes: Vec<NodeRenderState>, pub pending_nodes: Vec<NodeRenderState>,
pub render_complete: bool, pub render_complete: bool,
pub tile_shapes: HashMap<String, Vec<Shape>>
} }
impl RenderState { impl RenderState {
@ -490,6 +491,8 @@ impl RenderState {
return Ok(()); return Ok(());
} }
// TODO: We should have a hashmap of grid elements.
Ok(()) Ok(())
} }