1
0
Fork 0
forked from len0rd/rockbox

Complete rework of the grayscale library: (1) Implemented the new rockbox graphics api. (2) Added buffered mode, and implemented most drawing functions for buffered mode only. Buffered mode will ease implementation of animated graphics. Some functions are additionally provided as unbuffered versions (drawing grayscale bitmaps, scrolling) since unbuffered mode is better suited for non-animated graphics (JPEG viewer, mandelbrot) and saves some RAM, which is important on Archos. (3) Put all functions in a couple of source files, no more one-function-per-files. This became possible since sectioned compilation for the plugin library and appropriate linking for the pluginswas introduced, otherwise the binaries would be bloated by unused functions.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7241 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-07-25 20:50:34 +00:00
parent 12a4ed383f
commit c20a00ef3e
37 changed files with 2145 additions and 3328 deletions

View file

@ -1,35 +1,10 @@
configfile.c
highscore.c
#if (CONFIG_LCD == LCD_SSD1815) && !defined(SIMULATOR)
gray_black_display.c
gray_blockfuncs.c
gray_clear_display.c
gray_core.c
gray_deferred_update.c
gray_drawbitmap.c
gray_drawgraymap.c
gray_drawline.c
gray_drawpixel.c
gray_drawrect.c
gray_fillrect.c
gray_getstringsize.c
gray_horline.c
gray_pixelfuncs.c
gray_position_display.c
gray_putsxy.c
gray_screendump.c
gray_scroll_down.c
gray_scroll_down8.c
gray_scroll_left.c
gray_scroll_right.c
gray_scroll_up.c
gray_scroll_up8.c
gray_set_background.c
gray_set_drawinfo.c
gray_set_drawmode.c
gray_set_foreground.c
gray_setfont.c
gray_verline.c
gray_draw.c
gray_parm.c
gray_scroll.c
#endif
#ifdef HAVE_LCD_BITMAP
xlcd.c