summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/bmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/bmp.h')
-rw-r--r--apps/plugins/lib/bmp.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/lib/bmp.h b/apps/plugins/lib/bmp.h
index dc26e80114..e35c1ecb0a 100644
--- a/apps/plugins/lib/bmp.h
+++ b/apps/plugins/lib/bmp.h
@@ -27,4 +27,10 @@
27 */ 27 */
28int save_bmp_file( char* filename, struct bitmap *bm, struct plugin_api* rb ); 28int save_bmp_file( char* filename, struct bitmap *bm, struct plugin_api* rb );
29 29
30/**
31 Very simple image scale from src to dst (nearest neighbour).
32 Source and destination dimensions are read from the struct bitmap.
33*/
34void simple_resize_bitmap(struct bitmap *src, struct bitmap *dst);
35
30#endif 36#endif