mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-19 02:32:44 +03:00
Monkey: Drop bitmap save callback entry; core doesn't use it.
This commit is contained in:
parent
ee874c7ea1
commit
8e57f2a2f5
@ -96,11 +96,6 @@ static size_t bitmap_get_rowstride(void *bitmap)
|
|||||||
return bmap->width * 4;
|
return bmap->width * 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool bitmap_save(void *bitmap, const char *path, unsigned flags)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void bitmap_modified(void *bitmap)
|
static void bitmap_modified(void *bitmap)
|
||||||
{
|
{
|
||||||
struct bitmap *bmap = bitmap;
|
struct bitmap *bmap = bitmap;
|
||||||
@ -135,7 +130,6 @@ static struct gui_bitmap_table bitmap_table = {
|
|||||||
.get_rowstride = bitmap_get_rowstride,
|
.get_rowstride = bitmap_get_rowstride,
|
||||||
.get_width = bitmap_get_width,
|
.get_width = bitmap_get_width,
|
||||||
.get_height = bitmap_get_height,
|
.get_height = bitmap_get_height,
|
||||||
.save = bitmap_save,
|
|
||||||
.modified = bitmap_modified,
|
.modified = bitmap_modified,
|
||||||
.render = bitmap_render,
|
.render = bitmap_render,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user