summaryrefslogtreecommitdiff
path: root/beos
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-10-14 20:03:18 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2012-10-14 20:03:18 +0100
commitd88a8399371dad124136b4e12b9e7b7156ad3c69 (patch)
tree4fd3c0299efaf00d905045532aa8a45cb63b2c12 /beos
parentdbed8312c8b21ac4efaebee5b646a37a0c398b55 (diff)
downloadnetsurf-d88a8399371dad124136b4e12b9e7b7156ad3c69.tar.gz
netsurf-d88a8399371dad124136b4e12b9e7b7156ad3c69.tar.bz2
Remove suspension of bmp/gif images. It's completely redundant with the convert on demand core image cache.
Diffstat (limited to 'beos')
-rw-r--r--beos/bitmap.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/beos/bitmap.cpp b/beos/bitmap.cpp
index fed692315..83dedf780 100644
--- a/beos/bitmap.cpp
+++ b/beos/bitmap.cpp
@@ -298,20 +298,6 @@ void bitmap_modified(void *vbitmap) {
nsbeos_bitmap_free_pretiles(bitmap);
}
-
-/**
- * The bitmap image can be suspended.
- *
- * \param vbitmap a bitmap, as returned by bitmap_create()
- * \param private_word a private word to be returned later
- * \param suspend the function to be called upon suspension
- * \param resume the function to be called when resuming
- */
-void bitmap_set_suspendable(void *vbitmap, void *private_word,
- void (*invalidate)(void *vbitmap, void *private_word)) {
- struct bitmap *bitmap = (struct bitmap *)vbitmap;
-}
-
int bitmap_get_width(void *vbitmap){
struct bitmap *bitmap = (struct bitmap *)vbitmap;
return bitmap->primary->Bounds().Width() + 1;