1
0
Fork 0
forked from len0rd/rockbox

remove unneeded LCD_DEPTH test in lib/resize.h, add some comments explaining the core-file imports

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19715 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andrew Mahone 2009-01-08 08:32:05 +00:00
parent c7e83bd017
commit 32d9752dcc
4 changed files with 14 additions and 5 deletions

View file

@ -24,7 +24,7 @@
#include "lcd.h"
#include "plugin.h"
#if LCD_DEPTH > 1
#if LCD_DEPTH > 1 /* save is only available for color, resize for >1bpp */
#ifdef HAVE_LCD_COLOR
/**
* Save bitmap to file
@ -45,6 +45,11 @@ void simple_resize_bitmap(struct bitmap *src, struct bitmap *dst);
void smooth_resize_bitmap(struct bitmap *src, struct bitmap *dst);
#else
/*
BMP loader is built with scaling support in pluginlib on 1bpp targets, as
these do not provide scaling support in the core BMP loader. bmp_init is
needed to copy the plugin API pointer for the pluginlib loader's use.
*/
void bmp_init(const struct plugin_api *api);
#endif