Monkey: Drop bitmap get bpp function.

This commit is contained in:
Michael Drake 2022-03-24 12:47:31 +00:00
parent 521440df7c
commit 26b189af67
1 changed files with 0 additions and 7 deletions

View File

@ -96,12 +96,6 @@ static size_t bitmap_get_rowstride(void *bitmap)
return bmap->width * 4;
}
static size_t bitmap_get_bpp(void *bitmap)
{
/* OMG?! */
return 4;
}
static bool bitmap_save(void *bitmap, const char *path, unsigned flags)
{
return true;
@ -142,7 +136,6 @@ static struct gui_bitmap_table bitmap_table = {
.get_rowstride = bitmap_get_rowstride,
.get_width = bitmap_get_width,
.get_height = bitmap_get_height,
.get_bpp = bitmap_get_bpp,
.save = bitmap_save,
.modified = bitmap_modified,
.render = bitmap_render,