diff options
| author | Andrew Mahone <andrew.mahone@gmail.com> | 2008-12-26 07:05:13 +0000 |
|---|---|---|
| committer | Andrew Mahone <andrew.mahone@gmail.com> | 2008-12-26 07:05:13 +0000 |
| commit | 9058620849c080a404fb156915856f9d0b06e71c (patch) | |
| tree | 004590b20a5ea0fa6b099f5332af162896e44098 /apps/plugins/lib/grey.h | |
| parent | f7fa7e5ad537415f1f75b3a9c1a58eb925e10d04 (diff) | |
| download | rockbox-9058620849c080a404fb156915856f9d0b06e71c.zip rockbox-9058620849c080a404fb156915856f9d0b06e71c.tar.gz rockbox-9058620849c080a404fb156915856f9d0b06e71c.tar.bz2 rockbox-9058620849c080a404fb156915856f9d0b06e71c.tar.xz | |
Make scaler output truly pluggable, add an 8-bit greyscale output to
pluginlib for use with greylib, and add source for a test scaled bmp
viewer using greylib.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19593 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/grey.h')
| -rw-r--r-- | apps/plugins/lib/grey.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/lib/grey.h b/apps/plugins/lib/grey.h index 8f8de9d..8c9d40a 100644 --- a/apps/plugins/lib/grey.h +++ b/apps/plugins/lib/grey.h @@ -106,6 +106,7 @@ void grey_ub_gray_bitmap_part(const unsigned char *src, int src_x, int src_y, int stride, int x, int y, int width, int height); void grey_ub_gray_bitmap(const unsigned char *src, int x, int y, int width, int height); +extern const struct custom_format format_grey; /* Text */ void grey_putsxyofs(int x, int y, int ofs, const unsigned char *str); |