summaryrefslogtreecommitdiff
path: root/apps/screen_access.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-12-20 23:34:28 +0100
committerThomas Martitz <kugel@rockbox.org>2014-01-07 11:36:00 +0100
commit77836e57362f91cd037ea9c97a8fda00187d2070 (patch)
tree8e1bb3d5cb4cdb17a62070685a4f9b56cd6927e7 /apps/screen_access.h
parent6630958533d02d66dca8cc79897fda2cb744c076 (diff)
downloadrockbox-77836e57362f91cd037ea9c97a8fda00187d2070.tar.gz
rockbox-77836e57362f91cd037ea9c97a8fda00187d2070.zip
lcd-16bit: Introduce lcd_gradient_fillrect_part().
It is similar to lcd_gradient_fillrect(), except that it only draws a part of the complete gradient. This can be used to draw only the bottom half of a full gradient. Change-Id: Ib47cc5237f6966e35ba07988bddbb00fd97adf96
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r--apps/screen_access.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h
index 210ad2e990..d5bcd7e095 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -169,6 +169,8 @@ struct screen
169#if defined(HAVE_LCD_COLOR) 169#if defined(HAVE_LCD_COLOR)
170 void (*gradient_fillrect)(int x, int y, int width, int height, 170 void (*gradient_fillrect)(int x, int y, int width, int height,
171 unsigned start, unsigned end); 171 unsigned start, unsigned end);
172 void (*gradient_fillrect_part)(int x, int y, int width, int height,
173 unsigned start, unsigned end, int src_height, int row_skip);
172#endif 174#endif
173#endif 175#endif
174#if defined(HAVE_LCD_BITMAP) 176#if defined(HAVE_LCD_BITMAP)