summaryrefslogtreecommitdiff
path: root/desktop/textarea.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-02-08 23:25:40 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2013-02-08 23:25:40 +0000
commit0d831c4ab68d48e2ff114a217d5ce8df61cf0fe3 (patch)
tree3ab6c77d43a5d41156719a37b6b7e53445ab86e4 /desktop/textarea.h
parent586e02e915f33e304f5f5e664d29efd2940a4dcf (diff)
downloadnetsurf-0d831c4ab68d48e2ff114a217d5ce8df61cf0fe3.tar.gz
netsurf-0d831c4ab68d48e2ff114a217d5ce8df61cf0fe3.tar.bz2
Scaled textarea rendering support. Ugly.
Diffstat (limited to 'desktop/textarea.h')
-rw-r--r--desktop/textarea.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/textarea.h b/desktop/textarea.h
index 566e0cf6c..d01cd12c6 100644
--- a/desktop/textarea.h
+++ b/desktop/textarea.h
@@ -169,10 +169,11 @@ int textarea_get_caret(struct textarea *ta);
* \param x x coordinate of textarea top
* \param y y coordinate of textarea left
* \param bg background colour under textarea
+ * \param scale scale to render at
* \param clip clip rectangle
* \param ctx current redraw context
*/
-void textarea_redraw(struct textarea *ta, int x, int y, colour bg,
+void textarea_redraw(struct textarea *ta, int x, int y, colour bg, float scale,
const struct rect *clip, const struct redraw_context *ctx);
/**