summaryrefslogtreecommitdiff
path: root/riscos/thumbnail.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2005-06-23 17:24:23 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2005-06-23 17:24:23 +0000
commitf559054c1a1b0819e52e0f9d04fc55be484746c5 (patch)
tree2c6652666c751a1a368920679da0ba85b01854d8 /riscos/thumbnail.h
parentb88a81b9d9570c3219dc924c3dd2b424d99ee4c3 (diff)
downloadnetsurf-f559054c1a1b0819e52e0f9d04fc55be484746c5.tar.gz
netsurf-f559054c1a1b0819e52e0f9d04fc55be484746c5.tar.bz2
[project @ 2005-06-23 17:24:23 by rjw]
Allow images to be unloaded to disk or compressed in memory. Provide thumbnails in all tree windows (hotlist, history). Optimise the application initialisation times. Part 2 of 2. svn path=/import/netsurf/; revision=1762
Diffstat (limited to 'riscos/thumbnail.h')
-rw-r--r--riscos/thumbnail.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/riscos/thumbnail.h b/riscos/thumbnail.h
index 429e14fa8..6943f2bbb 100644
--- a/riscos/thumbnail.h
+++ b/riscos/thumbnail.h
@@ -3,6 +3,7 @@
* Licensed under the GNU General Public License,
* http://www.opensource.org/licenses/gpl-license
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2005 Richard Wilson <info@tinct.net>
*/
/** \file
@@ -10,7 +11,8 @@
*/
#include "oslib/osspriteop.h"
+#include "netsurf/image/bitmap.h"
-void thumbnail_create(struct content *content, osspriteop_area *area,
- osspriteop_header *sprite, int width, int height);
-osspriteop_area* thumbnail_initialise(int width, int height, os_mode mode);
+bool thumbnail_create(struct content *content, struct bitmap *bitmap,
+ const char *url);
+osspriteop_area *thumbnail_convert_8bpp(struct bitmap *bitmap);