summaryrefslogtreecommitdiff
path: root/render/html_internal.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-02-06 18:17:39 +0000
committerVincent Sanders <vince@kyllikki.org>2017-02-11 13:57:06 +0000
commit18abdadac83789019ae1a36a1e1cad2e98601efa (patch)
treef49fa7b8c8f00694684c597544cd8e5ed00d5880 /render/html_internal.h
parent30df27c3babe188cc553df77e84a36b4db84bd47 (diff)
downloadnetsurf-18abdadac83789019ae1a36a1e1cad2e98601efa.tar.gz
netsurf-18abdadac83789019ae1a36a1e1cad2e98601efa.tar.bz2
split border drawing out of html redraw
Diffstat (limited to 'render/html_internal.h')
-rw-r--r--render/html_internal.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/render/html_internal.h b/render/html_internal.h
index fd65707ce..2f84cf869 100644
--- a/render/html_internal.h
+++ b/render/html_internal.h
@@ -258,6 +258,15 @@ bool html_begin_conversion(html_content *htmlc);
bool html_redraw(struct content *c, struct content_redraw_data *data,
const struct rect *clip, const struct redraw_context *ctx);
+/* in render/html_redraw_border.c */
+bool html_redraw_borders(struct box *box, int x_parent, int y_parent,
+ int p_width, int p_height, const struct rect *clip, float scale,
+ const struct redraw_context *ctx);
+
+bool html_redraw_inline_borders(struct box *box, struct rect b,
+ const struct rect *clip, float scale, bool first, bool last,
+ const struct redraw_context *ctx);
+
/* in render/html_interaction.c */
void html_mouse_track(struct content *c, struct browser_window *bw,
browser_mouse_state mouse, int x, int y);