summaryrefslogtreecommitdiff
path: root/image/bitmap.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2005-04-29 01:35:52 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2005-04-29 01:35:52 +0000
commitec9db1d6af76c053f5e1c746057554e0b0dbcc9b (patch)
treeaee18fe5928493c31f36d99a609fac8052b66289 /image/bitmap.h
parent683892f9db54d0bdc2380dba12682df4f282b4b5 (diff)
downloadnetsurf-ec9db1d6af76c053f5e1c746057554e0b0dbcc9b.tar.gz
netsurf-ec9db1d6af76c053f5e1c746057554e0b0dbcc9b.tar.bz2
[project @ 2005-04-29 01:35:52 by rjw]
Only initialise canvases if we need to. svn path=/import/netsurf/; revision=1699
Diffstat (limited to 'image/bitmap.h')
-rw-r--r--image/bitmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/image/bitmap.h b/image/bitmap.h
index 9d442c214..1e68761b3 100644
--- a/image/bitmap.h
+++ b/image/bitmap.h
@@ -25,7 +25,7 @@ struct content;
/** An opaque image. */
struct bitmap;
-struct bitmap *bitmap_create(int width, int height);
+struct bitmap *bitmap_create(int width, int height, bool clear);
void bitmap_set_opaque(struct bitmap *bitmap, bool opaque);
bool bitmap_test_opaque(struct bitmap *bitmap);
bool bitmap_get_opaque(struct bitmap *bitmap);