summaryrefslogtreecommitdiff
path: root/debug
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-02-21 20:49:12 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-02-21 20:49:12 +0000
commit4cc85469cb26f8ea1a8f14f17bddb6a5cbea1e88 (patch)
tree2a8287146412196c1ded7a187afae58469d5f641 /debug
parentb6c6d7777277caf99ade1389c180f4a428b4a1c6 (diff)
downloadnetsurf-4cc85469cb26f8ea1a8f14f17bddb6a5cbea1e88.tar.gz
netsurf-4cc85469cb26f8ea1a8f14f17bddb6a5cbea1e88.tar.bz2
[project @ 2006-02-21 20:49:11 by rjw]
Allow any content to be used as a background. Simplify bitmap code. svn path=/import/netsurf/; revision=2087
Diffstat (limited to 'debug')
-rw-r--r--debug/debug_bitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/debug_bitmap.c b/debug/debug_bitmap.c
index 394a7961f..6d7cd3f44 100644
--- a/debug/debug_bitmap.c
+++ b/debug/debug_bitmap.c
@@ -32,7 +32,7 @@ struct bitmap {
* \return an opaque struct bitmap, or NULL on memory exhaustion
*/
-struct bitmap *bitmap_create(int width, int height, bool clear)
+struct bitmap *bitmap_create(int width, int height, bitmap_state state)
{
struct bitmap *bitmap;
bitmap = calloc(sizeof *bitmap + width * height * 4, 1);