diff options
| author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-04 21:22:05 +0000 |
|---|---|---|
| committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-04 21:22:05 +0000 |
| commit | 4eedc933572605e42f6f2fb00d099fe4a2075032 (patch) | |
| tree | 4e623580b92763369fb824ec725a28b71f9272ef /apps/plugins/lib/bmp.c | |
| parent | b93874fefcb152f5e079366c6bf65df7ebf657fa (diff) | |
| download | rockbox-4eedc933572605e42f6f2fb00d099fe4a2075032.zip rockbox-4eedc933572605e42f6f2fb00d099fe4a2075032.tar.gz rockbox-4eedc933572605e42f6f2fb00d099fe4a2075032.tar.bz2 rockbox-4eedc933572605e42f6f2fb00d099fe4a2075032.tar.xz | |
build a scaling-enabled bitmap loader in pluginlib for mono bitmap targets, and use it in the test greylib scaler plugin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19671 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/bmp.c')
| -rw-r--r-- | apps/plugins/lib/bmp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/lib/bmp.c b/apps/plugins/lib/bmp.c index a8ebbff..85e996c 100644 --- a/apps/plugins/lib/bmp.c +++ b/apps/plugins/lib/bmp.c @@ -87,6 +87,8 @@ int save_bmp_file( char* filename, struct bitmap *bm, const struct plugin_api* r } #endif +#include "../../recorder/bmp.c" + /** Very simple image scale from src to dst (nearest neighbour). Source and destination dimensions are read from the struct bitmap. |