summaryrefslogtreecommitdiff
path: root/apps/screen_access.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-10-11 01:19:55 +0000
committerThomas Martitz <kugel@rockbox.org>2010-10-11 01:19:55 +0000
commit3022a60cc2c5958555743f9438b8cf7cd95987f0 (patch)
tree18dc395d0d9cb1895fa831fbe92ae48ab7438d04 /apps/screen_access.h
parent1f0ab7c9e636ba3e88700b1b6fb75e876a0f0a44 (diff)
downloadrockbox-3022a60cc2c5958555743f9438b8cf7cd95987f0.tar.gz
rockbox-3022a60cc2c5958555743f9438b8cf7cd95987f0.zip
Rename {draw,fill}_viewport once more (to draw_border_viewport and fill_viewport) and remove the viewport parameter as suggested by Dave Chapman.
The parameter wasn't used yet and it's not clear whether it should be a absolute or relative viewport. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28242 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r--apps/screen_access.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h
index 6a4750dbb0..efe232b50e 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -117,8 +117,8 @@ struct screen
117 void (*update_viewport_rect)(int x, int y, int width, int height); 117 void (*update_viewport_rect)(int x, int y, int width, int height);
118 void (*fillrect)(int x, int y, int width, int height); 118 void (*fillrect)(int x, int y, int width, int height);
119 void (*drawrect)(int x, int y, int width, int height); 119 void (*drawrect)(int x, int y, int width, int height);
120 void (*fill_viewport_rect)(const struct viewport *vp); 120 void (*fill_viewport)(void);
121 void (*draw_viewport_rect)(const struct viewport *vp); 121 void (*draw_border_viewport)(void);
122 void (*drawpixel)(int x, int y); 122 void (*drawpixel)(int x, int y);
123 void (*drawline)(int x1, int y1, int x2, int y2); 123 void (*drawline)(int x1, int y1, int x2, int y2);
124 void (*vline)(int x, int y1, int y2); 124 void (*vline)(int x, int y1, int y2);