summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-03-24 15:28:22 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2022-03-24 15:28:22 +0000
commit8e57f2a2f588c4d59fadb3ae4ef05625581c8ad6 (patch)
tree0227762a3c6ee6efb14db05cd38e56e44eb50575 /frontends
parentee874c7ea139366effcfeadcb7066ad4a39c295f (diff)
downloadnetsurf-8e57f2a2f588c4d59fadb3ae4ef05625581c8ad6.tar.gz
netsurf-8e57f2a2f588c4d59fadb3ae4ef05625581c8ad6.tar.bz2
Monkey: Drop bitmap save callback entry; core doesn't use it.
Diffstat (limited to 'frontends')
-rw-r--r--frontends/monkey/bitmap.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/frontends/monkey/bitmap.c b/frontends/monkey/bitmap.c
index 9ed84bc65..ba3b83cf5 100644
--- a/frontends/monkey/bitmap.c
+++ b/frontends/monkey/bitmap.c
@@ -96,11 +96,6 @@ static size_t bitmap_get_rowstride(void *bitmap)
return bmap->width * 4;
}
-static bool bitmap_save(void *bitmap, const char *path, unsigned flags)
-{
- return true;
-}
-
static void bitmap_modified(void *bitmap)
{
struct bitmap *bmap = bitmap;
@@ -135,7 +130,6 @@ static struct gui_bitmap_table bitmap_table = {
.get_rowstride = bitmap_get_rowstride,
.get_width = bitmap_get_width,
.get_height = bitmap_get_height,
- .save = bitmap_save,
.modified = bitmap_modified,
.render = bitmap_render,
};