summaryrefslogtreecommitdiff
path: root/render/layout.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/layout.h')
-rw-r--r--render/layout.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/render/layout.h b/render/layout.h
index a46a6e399..1a926d904 100644
--- a/render/layout.h
+++ b/render/layout.h
@@ -20,9 +20,12 @@
#define SCROLLBAR_WIDTH 16
+struct box;
+
bool layout_document(struct box *box, int width, pool box_pool);
bool layout_block_context(struct box *block, pool box_pool);
bool layout_inline_container(struct box *box, int width,
struct box *cont, int cx, int cy, pool box_pool);
+void layout_calculate_descendant_bboxes(struct box *box);
#endif