diff options
author | Thomas Martitz <kugel@rockbox.org> | 2013-03-26 23:15:56 +0100 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2013-12-14 23:11:30 +0100 |
commit | 47c8d3c14d8fdaf4749ef5e0380fb0c52140b5fb (patch) | |
tree | 1e34394f6367ee4f8e937ee3f610236acaefad6f /firmware/drivers/lcd-1bit-vert.c | |
parent | 87c6df98a34154b77c522196c61d89c6f3797416 (diff) |
lcd-*: Merge common viewport operations into lcd-bitmap-common.c
Change-Id: Ibec2d039ac0ba1214c9bd1b667bc8a9538a0d3d7
Diffstat (limited to 'firmware/drivers/lcd-1bit-vert.c')
-rw-r--r-- | firmware/drivers/lcd-1bit-vert.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/firmware/drivers/lcd-1bit-vert.c b/firmware/drivers/lcd-1bit-vert.c index 3a90856819..5cacf0a740 100644 --- a/firmware/drivers/lcd-1bit-vert.c +++ b/firmware/drivers/lcd-1bit-vert.c @@ -60,49 +60,6 @@ static struct viewport default_vp = static struct viewport* current_vp = &default_vp; -/*** Viewports ***/ - -void LCDFN(set_viewport)(struct viewport* vp) -{ - if (vp == NULL) - current_vp = &default_vp; - else - current_vp = vp; - -#if defined(SIMULATOR) - /* Force the viewport to be within bounds. If this happens it should - * be considered an error - the viewport will not draw as it might be - * expected. - */ - if((unsigned) current_vp->x > (unsigned) LCDM(WIDTH) - || (unsigned) current_vp->y > (unsigned) LCDM(HEIGHT) - || current_vp->x + current_vp->width > LCDM(WIDTH) - || current_vp->y + current_vp->height > LCDM(HEIGHT)) - { -#if !defined(HAVE_VIEWPORT_CLIP) - DEBUGF("ERROR: " -#else - DEBUGF("NOTE: " -#endif - "set_viewport out of bounds: x: %d y: %d width: %d height:%d\n", - current_vp->x, current_vp->y, - current_vp->width, current_vp->height); - } - -#endif -} - -void LCDFN(update_viewport)(void) -{ - LCDFN(update_rect)(current_vp->x, current_vp->y, - current_vp->width, current_vp->height); -} - -void LCDFN(update_viewport_rect)(int x, int y, int width, int height) -{ - LCDFN(update_rect)(current_vp->x + x, current_vp->y + y, width, height); -} - /* LCD init */ void LCDFN(init)(void) { |