mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
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
This commit is contained in:
parent
1f0ab7c9e6
commit
3022a60cc2
9 changed files with 21 additions and 27 deletions
|
@ -117,8 +117,8 @@ struct screen
|
|||
void (*update_viewport_rect)(int x, int y, int width, int height);
|
||||
void (*fillrect)(int x, int y, int width, int height);
|
||||
void (*drawrect)(int x, int y, int width, int height);
|
||||
void (*fill_viewport_rect)(const struct viewport *vp);
|
||||
void (*draw_viewport_rect)(const struct viewport *vp);
|
||||
void (*fill_viewport)(void);
|
||||
void (*draw_border_viewport)(void);
|
||||
void (*drawpixel)(int x, int y);
|
||||
void (*drawline)(int x1, int y1, int x2, int y2);
|
||||
void (*vline)(int x, int y1, int y2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue