summaryrefslogtreecommitdiff
path: root/frontends/framebuffer/bitmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/framebuffer/bitmap.c')
-rw-r--r--frontends/framebuffer/bitmap.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/frontends/framebuffer/bitmap.c b/frontends/framebuffer/bitmap.c
index 133ee12fc..7b522f262 100644
--- a/frontends/framebuffer/bitmap.c
+++ b/frontends/framebuffer/bitmap.c
@@ -133,20 +133,6 @@ static void 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;
-}
-
-
-/**
* The bitmap image has changed, so flush any persistant cache.
*
* \param bitmap a bitmap, as returned by bitmap_create()
@@ -331,7 +317,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,
};