summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-03-24 15:26:07 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2022-03-24 15:26:07 +0000
commit1e9687196d7e6606e3d0b54998fcf22803fc4ca9 (patch)
tree91d4b47626f0d3a42eb53db20ccbb7392df82c43 /frontends
parentfca10f324ebbb3c2ddf14527d95ba4299c21d894 (diff)
downloadnetsurf-1e9687196d7e6606e3d0b54998fcf22803fc4ca9.tar.gz
netsurf-1e9687196d7e6606e3d0b54998fcf22803fc4ca9.tar.bz2
Atari: Drop bitmap save callback entry; core doesn't use it.
Diffstat (limited to 'frontends')
-rw-r--r--frontends/atari/bitmap.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/frontends/atari/bitmap.c b/frontends/atari/bitmap.c
index e627a3220..5ac15ad4f 100644
--- a/frontends/atari/bitmap.c
+++ b/frontends/atari/bitmap.c
@@ -249,21 +249,6 @@ void atari_bitmap_destroy(void *bitmap)
/**
- * Save a bitmap in the platform's native format.
- *
- * \param bitmap a bitmap, as returned by bitmap_create()
- * \param path pathname for file
- * \param flags flags controlling how the bitmap is saved.
- * \return true on success, false on error and error reported
- */
-
-static bool bitmap_save(void *bitmap, const char *path, unsigned flags)
-{
- return true;
-}
-
-
-/**
* Sets whether a bitmap should be plotted opaque
*
* \param bitmap a bitmap, as returned by bitmap_create()
@@ -434,7 +419,6 @@ static struct gui_bitmap_table bitmap_table = {
.get_rowstride = atari_bitmap_get_rowstride,
.get_width = atari_bitmap_get_width,
.get_height = atari_bitmap_get_height,
- .save = bitmap_save,
.modified = bitmap_modified,
.render = bitmap_render,
};