2005-11-07 23:07:19 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Dave Chapman
|
2011-03-08 17:11:56 +00:00
|
|
|
* Copyright (C) 2009 by Karl Kurbjun
|
2005-11-07 23:07:19 +00:00
|
|
|
*
|
|
|
|
* Rockbox driver for 16-bit colour LCDs
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2005-11-07 23:07:19 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2011-03-08 17:11:56 +00:00
|
|
|
|
2005-11-07 23:07:19 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "thread.h"
|
|
|
|
#include <stdlib.h>
|
2010-08-12 13:55:01 +00:00
|
|
|
#include "string-extra.h" /* mem*() */
|
2005-11-07 23:07:19 +00:00
|
|
|
#include "file.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "font.h"
|
2005-12-06 13:27:15 +00:00
|
|
|
#include "rbunicode.h"
|
2005-11-07 23:07:19 +00:00
|
|
|
#include "bidi.h"
|
2007-07-28 08:12:05 +00:00
|
|
|
#include "scroll_engine.h"
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2011-12-03 22:19:17 +00:00
|
|
|
#define ROW_INC LCD_WIDTH
|
|
|
|
#define COL_INC 1
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2005-11-28 10:05:45 +00:00
|
|
|
#define LCDADDR(x, y) (&lcd_framebuffer[(y)][(x)])
|
|
|
|
|
2011-12-03 22:19:17 +00:00
|
|
|
#include "lcd-16bit-common.c"
|
2006-02-03 21:11:51 +00:00
|
|
|
|
2011-12-03 22:19:17 +00:00
|
|
|
#include "lcd-bitmap-common.c"
|
2006-02-03 21:11:51 +00:00
|
|
|
|
2005-11-07 23:07:19 +00:00
|
|
|
/*** drawing functions ***/
|
|
|
|
|
2008-01-07 20:34:11 +00:00
|
|
|
/* Clear the current viewport */
|
|
|
|
void lcd_clear_viewport(void)
|
2005-11-07 23:07:19 +00:00
|
|
|
{
|
2008-01-07 20:34:11 +00:00
|
|
|
fb_data *dst, *dst_end;
|
|
|
|
|
|
|
|
dst = LCDADDR(current_vp->x, current_vp->y);
|
|
|
|
dst_end = dst + current_vp->height * LCD_WIDTH;
|
2007-01-04 11:43:33 +00:00
|
|
|
|
2008-01-07 20:34:11 +00:00
|
|
|
if (current_vp->drawmode & DRMODE_INVERSEVID)
|
2006-02-03 21:11:51 +00:00
|
|
|
{
|
2008-01-07 20:34:11 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
memset16(dst, current_vp->fg_pattern, current_vp->width);
|
|
|
|
dst += LCD_WIDTH;
|
|
|
|
}
|
|
|
|
while (dst < dst_end);
|
2006-02-02 20:42:56 +00:00
|
|
|
}
|
2006-02-03 21:11:51 +00:00
|
|
|
else
|
|
|
|
{
|
2006-02-22 01:28:19 +00:00
|
|
|
if (!lcd_backdrop)
|
2008-01-07 20:34:11 +00:00
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
memset16(dst, current_vp->bg_pattern, current_vp->width);
|
|
|
|
dst += LCD_WIDTH;
|
|
|
|
}
|
|
|
|
while (dst < dst_end);
|
|
|
|
}
|
2006-02-22 01:28:19 +00:00
|
|
|
else
|
2008-01-07 20:34:11 +00:00
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
memcpy(dst, (void *)((long)dst + lcd_backdrop_offset),
|
|
|
|
current_vp->width * sizeof(fb_data));
|
|
|
|
dst += LCD_WIDTH;
|
|
|
|
}
|
|
|
|
while (dst < dst_end);
|
|
|
|
}
|
2006-02-03 21:11:51 +00:00
|
|
|
}
|
2007-07-28 08:12:05 +00:00
|
|
|
|
2008-01-07 20:34:11 +00:00
|
|
|
if (current_vp == &default_vp)
|
|
|
|
{
|
|
|
|
lcd_scroll_info.lines = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lcd_scroll_stop(current_vp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-07 23:07:19 +00:00
|
|
|
/* Draw a horizontal line (optimised) */
|
|
|
|
void lcd_hline(int x1, int x2, int y)
|
|
|
|
{
|
2006-02-22 01:28:19 +00:00
|
|
|
int x, width;
|
|
|
|
unsigned bits = 0;
|
|
|
|
enum fill_opt fillopt = OPT_NONE;
|
2005-11-28 10:05:45 +00:00
|
|
|
fb_data *dst, *dst_end;
|
2005-11-07 23:07:19 +00:00
|
|
|
|
|
|
|
/* direction flip */
|
|
|
|
if (x2 < x1)
|
|
|
|
{
|
|
|
|
x = x1;
|
|
|
|
x1 = x2;
|
|
|
|
x2 = x;
|
|
|
|
}
|
2007-01-04 11:43:33 +00:00
|
|
|
|
2009-11-07 18:38:46 +00:00
|
|
|
/******************** In viewport clipping **********************/
|
2005-11-07 23:07:19 +00:00
|
|
|
/* nothing to draw? */
|
2008-01-07 20:34:11 +00:00
|
|
|
if (((unsigned)y >= (unsigned)current_vp->height) ||
|
|
|
|
(x1 >= current_vp->width) ||
|
|
|
|
(x2 < 0))
|
2007-01-04 11:43:33 +00:00
|
|
|
return;
|
2009-11-07 18:38:46 +00:00
|
|
|
|
|
|
|
if (x1 < 0)
|
|
|
|
x1 = 0;
|
|
|
|
if (x2 >= current_vp->width)
|
|
|
|
x2 = current_vp->width-1;
|
|
|
|
|
|
|
|
/* Adjust x1 and y to viewport */
|
|
|
|
x1 += current_vp->x;
|
|
|
|
x2 += current_vp->x;
|
|
|
|
y += current_vp->y;
|
|
|
|
|
|
|
|
#if defined(HAVE_VIEWPORT_CLIP)
|
|
|
|
/********************* Viewport on screen clipping ********************/
|
|
|
|
/* nothing to draw? */
|
|
|
|
if (((unsigned)y >= (unsigned) LCD_HEIGHT) || (x1 >= LCD_WIDTH)
|
|
|
|
|| (x2 < 0))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* clipping */
|
|
|
|
if (x1 < 0)
|
|
|
|
x1 = 0;
|
|
|
|
if (x2 >= LCD_WIDTH)
|
|
|
|
x2 = LCD_WIDTH-1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
width = x2 - x1 + 1;
|
2007-01-04 11:43:33 +00:00
|
|
|
|
2009-03-08 17:22:17 +00:00
|
|
|
/* drawmode and optimisation */
|
2008-01-07 20:34:11 +00:00
|
|
|
if (current_vp->drawmode & DRMODE_INVERSEVID)
|
2006-02-22 01:28:19 +00:00
|
|
|
{
|
2008-01-07 20:34:11 +00:00
|
|
|
if (current_vp->drawmode & DRMODE_BG)
|
2006-02-22 01:28:19 +00:00
|
|
|
{
|
|
|
|
if (!lcd_backdrop)
|
|
|
|
{
|
|
|
|
fillopt = OPT_SET;
|
2008-01-07 20:34:11 +00:00
|
|
|
bits = current_vp->bg_pattern;
|
2006-02-22 01:28:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fillopt = OPT_COPY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-01-07 20:34:11 +00:00
|
|
|
if (current_vp->drawmode & DRMODE_FG)
|
2006-02-22 01:28:19 +00:00
|
|
|
{
|
|
|
|
fillopt = OPT_SET;
|
2008-01-07 20:34:11 +00:00
|
|
|
bits = current_vp->fg_pattern;
|
2006-02-22 01:28:19 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-08 17:22:17 +00:00
|
|
|
if (fillopt == OPT_NONE && current_vp->drawmode != DRMODE_COMPLEMENT)
|
|
|
|
return;
|
|
|
|
|
2005-11-28 10:05:45 +00:00
|
|
|
dst = LCDADDR(x1, y);
|
2007-01-04 11:43:33 +00:00
|
|
|
|
2006-02-22 01:28:19 +00:00
|
|
|
switch (fillopt)
|
|
|
|
{
|
|
|
|
case OPT_SET:
|
|
|
|
memset16(dst, bits, width);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPT_COPY:
|
2006-03-02 01:21:57 +00:00
|
|
|
memcpy(dst, (void *)((long)dst + lcd_backdrop_offset),
|
2006-02-22 01:28:19 +00:00
|
|
|
width * sizeof(fb_data));
|
|
|
|
break;
|
|
|
|
|
2009-03-08 17:22:17 +00:00
|
|
|
case OPT_NONE: /* DRMODE_COMPLEMENT */
|
2006-02-22 01:28:19 +00:00
|
|
|
dst_end = dst + width;
|
|
|
|
do
|
2009-03-08 17:22:17 +00:00
|
|
|
*dst = ~(*dst);
|
|
|
|
while (++dst < dst_end);
|
2006-02-22 01:28:19 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-11-07 23:07:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw a vertical line (optimised) */
|
|
|
|
void lcd_vline(int x, int y1, int y2)
|
|
|
|
{
|
2005-11-14 20:48:34 +00:00
|
|
|
int y;
|
2005-11-28 10:05:45 +00:00
|
|
|
fb_data *dst, *dst_end;
|
2008-01-07 20:34:11 +00:00
|
|
|
lcd_fastpixelfunc_type *pfunc = lcd_fastpixelfuncs[current_vp->drawmode];
|
2005-11-07 23:07:19 +00:00
|
|
|
|
|
|
|
/* direction flip */
|
|
|
|
if (y2 < y1)
|
|
|
|
{
|
2005-11-14 20:48:34 +00:00
|
|
|
y = y1;
|
2005-11-07 23:07:19 +00:00
|
|
|
y1 = y2;
|
2005-11-14 20:48:34 +00:00
|
|
|
y2 = y;
|
2005-11-07 23:07:19 +00:00
|
|
|
}
|
|
|
|
|
2009-11-07 18:38:46 +00:00
|
|
|
/******************** In viewport clipping **********************/
|
2005-11-07 23:07:19 +00:00
|
|
|
/* nothing to draw? */
|
2008-10-03 08:10:38 +00:00
|
|
|
if (((unsigned)x >= (unsigned)current_vp->width) ||
|
2008-01-07 20:34:11 +00:00
|
|
|
(y1 >= current_vp->height) ||
|
|
|
|
(y2 < 0))
|
2007-01-04 11:43:33 +00:00
|
|
|
return;
|
|
|
|
|
2005-11-07 23:07:19 +00:00
|
|
|
if (y1 < 0)
|
|
|
|
y1 = 0;
|
2008-01-07 20:34:11 +00:00
|
|
|
if (y2 >= current_vp->height)
|
|
|
|
y2 = current_vp->height-1;
|
2009-11-07 18:38:46 +00:00
|
|
|
|
|
|
|
/* adjust for viewport */
|
|
|
|
x += current_vp->x;
|
|
|
|
y1 += current_vp->y;
|
|
|
|
y2 += current_vp->y;
|
|
|
|
|
|
|
|
#if defined(HAVE_VIEWPORT_CLIP)
|
|
|
|
/********************* Viewport on screen clipping ********************/
|
|
|
|
/* nothing to draw? */
|
|
|
|
if (( (unsigned) x >= (unsigned)LCD_WIDTH) || (y1 >= LCD_HEIGHT)
|
|
|
|
|| (y2 < 0))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* clipping */
|
|
|
|
if (y1 < 0)
|
|
|
|
y1 = 0;
|
|
|
|
if (y2 >= LCD_HEIGHT)
|
|
|
|
y2 = LCD_HEIGHT-1;
|
|
|
|
#endif
|
2007-01-04 11:43:33 +00:00
|
|
|
|
2009-11-07 18:38:46 +00:00
|
|
|
dst = LCDADDR(x , y1);
|
2005-11-28 10:05:45 +00:00
|
|
|
dst_end = dst + (y2 - y1) * LCD_WIDTH;
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2005-11-14 20:48:34 +00:00
|
|
|
do
|
2005-11-28 10:05:45 +00:00
|
|
|
{
|
|
|
|
pfunc(dst);
|
|
|
|
dst += LCD_WIDTH;
|
|
|
|
}
|
|
|
|
while (dst <= dst_end);
|
2005-11-07 23:07:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill a rectangular area */
|
|
|
|
void lcd_fillrect(int x, int y, int width, int height)
|
|
|
|
{
|
2006-02-22 01:28:19 +00:00
|
|
|
unsigned bits = 0;
|
|
|
|
enum fill_opt fillopt = OPT_NONE;
|
2005-11-28 10:05:45 +00:00
|
|
|
fb_data *dst, *dst_end;
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2009-11-07 18:38:46 +00:00
|
|
|
/******************** In viewport clipping **********************/
|
2005-11-07 23:07:19 +00:00
|
|
|
/* nothing to draw? */
|
2008-01-07 20:34:11 +00:00
|
|
|
if ((width <= 0) || (height <= 0) || (x >= current_vp->width) ||
|
|
|
|
(y >= current_vp->height) || (x + width <= 0) || (y + height <= 0))
|
2005-11-07 23:07:19 +00:00
|
|
|
return;
|
|
|
|
|
2009-11-07 18:38:46 +00:00
|
|
|
if (x < 0)
|
|
|
|
{
|
|
|
|
width += x;
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
if (y < 0)
|
|
|
|
{
|
|
|
|
height += y;
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
if (x + width > current_vp->width)
|
|
|
|
width = current_vp->width - x;
|
|
|
|
if (y + height > current_vp->height)
|
|
|
|
height = current_vp->height - y;
|
|
|
|
|
|
|
|
/* adjust for viewport */
|
|
|
|
x += current_vp->x;
|
|
|
|
y += current_vp->y;
|
|
|
|
|
|
|
|
#if defined(HAVE_VIEWPORT_CLIP)
|
|
|
|
/********************* Viewport on screen clipping ********************/
|
|
|
|
/* nothing to draw? */
|
|
|
|
if ((x >= LCD_WIDTH) || (y >= LCD_HEIGHT)
|
|
|
|
|| (x + width <= 0) || (y + height <= 0))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* clip image in viewport in screen */
|
|
|
|
if (x < 0)
|
|
|
|
{
|
|
|
|
width += x;
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
if (y < 0)
|
|
|
|
{
|
|
|
|
height += y;
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
if (x + width > LCD_WIDTH)
|
|
|
|
width = LCD_WIDTH - x;
|
|
|
|
if (y + height > LCD_HEIGHT)
|
|
|
|
height = LCD_HEIGHT - y;
|
|
|
|
#endif
|
|
|
|
|
2009-03-08 17:22:17 +00:00
|
|
|
/* drawmode and optimisation */
|
2008-01-07 20:34:11 +00:00
|
|
|
if (current_vp->drawmode & DRMODE_INVERSEVID)
|
2006-02-22 01:28:19 +00:00
|
|
|
{
|
2008-01-07 20:34:11 +00:00
|
|
|
if (current_vp->drawmode & DRMODE_BG)
|
2006-02-22 01:28:19 +00:00
|
|
|
{
|
|
|
|
if (!lcd_backdrop)
|
|
|
|
{
|
|
|
|
fillopt = OPT_SET;
|
2008-01-07 20:34:11 +00:00
|
|
|
bits = current_vp->bg_pattern;
|
2006-02-22 01:28:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fillopt = OPT_COPY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-01-07 20:34:11 +00:00
|
|
|
if (current_vp->drawmode & DRMODE_FG)
|
2006-02-22 01:28:19 +00:00
|
|
|
{
|
|
|
|
fillopt = OPT_SET;
|
2008-01-07 20:34:11 +00:00
|
|
|
bits = current_vp->fg_pattern;
|
2006-02-22 01:28:19 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-08 17:22:17 +00:00
|
|
|
if (fillopt == OPT_NONE && current_vp->drawmode != DRMODE_COMPLEMENT)
|
|
|
|
return;
|
|
|
|
|
2009-11-07 18:38:46 +00:00
|
|
|
dst = LCDADDR(x, y);
|
2005-11-28 10:05:45 +00:00
|
|
|
dst_end = dst + height * LCD_WIDTH;
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2005-11-28 10:05:45 +00:00
|
|
|
do
|
2005-11-07 23:07:19 +00:00
|
|
|
{
|
2006-02-22 01:28:19 +00:00
|
|
|
fb_data *dst_row, *row_end;
|
2005-11-28 10:05:45 +00:00
|
|
|
|
2006-02-22 01:28:19 +00:00
|
|
|
switch (fillopt)
|
|
|
|
{
|
|
|
|
case OPT_SET:
|
|
|
|
memset16(dst, bits, width);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPT_COPY:
|
2006-03-02 01:21:57 +00:00
|
|
|
memcpy(dst, (void *)((long)dst + lcd_backdrop_offset),
|
2006-02-22 01:28:19 +00:00
|
|
|
width * sizeof(fb_data));
|
|
|
|
break;
|
|
|
|
|
2009-03-08 17:22:17 +00:00
|
|
|
case OPT_NONE: /* DRMODE_COMPLEMENT */
|
2006-02-22 01:28:19 +00:00
|
|
|
dst_row = dst;
|
|
|
|
row_end = dst_row + width;
|
|
|
|
do
|
2009-03-08 17:22:17 +00:00
|
|
|
*dst_row = ~(*dst_row);
|
|
|
|
while (++dst_row < row_end);
|
2006-02-22 01:28:19 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-11-28 10:05:45 +00:00
|
|
|
dst += LCD_WIDTH;
|
2005-11-07 23:07:19 +00:00
|
|
|
}
|
2005-11-28 10:05:45 +00:00
|
|
|
while (dst < dst_end);
|
2005-11-07 23:07:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw a partial native bitmap */
|
2008-04-12 07:53:33 +00:00
|
|
|
void ICODE_ATTR lcd_bitmap_part(const fb_data *src, int src_x, int src_y,
|
|
|
|
int stride, int x, int y, int width,
|
|
|
|
int height)
|
2005-11-07 23:07:19 +00:00
|
|
|
{
|
2009-10-26 01:35:31 +00:00
|
|
|
fb_data *dst;
|
2005-11-16 01:41:46 +00:00
|
|
|
|
2009-11-07 18:38:46 +00:00
|
|
|
/******************** Image in viewport clipping **********************/
|
|
|
|
/* nothing to draw? */
|
|
|
|
if ((width <= 0) || (height <= 0) || (x >= current_vp->width) ||
|
|
|
|
(y >= current_vp->height) || (x + width <= 0) || (y + height <= 0))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (x < 0)
|
2005-11-16 01:41:46 +00:00
|
|
|
{
|
|
|
|
width += x;
|
|
|
|
src_x -= x;
|
|
|
|
x = 0;
|
|
|
|
}
|
2009-11-07 18:38:46 +00:00
|
|
|
if (y < 0)
|
|
|
|
{
|
|
|
|
height += y;
|
|
|
|
src_y -= y;
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x + width > current_vp->width)
|
|
|
|
width = current_vp->width - x;
|
2009-10-26 01:35:31 +00:00
|
|
|
if (y + height > current_vp->height)
|
2009-11-07 18:38:46 +00:00
|
|
|
height = current_vp->height - y;
|
|
|
|
|
|
|
|
/* adjust for viewport */
|
|
|
|
x += current_vp->x;
|
|
|
|
y += current_vp->y;
|
|
|
|
|
|
|
|
#if defined(HAVE_VIEWPORT_CLIP)
|
|
|
|
/********************* Viewport on screen clipping ********************/
|
|
|
|
/* nothing to draw? */
|
|
|
|
if ((x >= LCD_WIDTH) || (y >= LCD_HEIGHT)
|
|
|
|
|| (x + width <= 0) || (y + height <= 0))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* clip image in viewport in screen */
|
|
|
|
if (x < 0)
|
|
|
|
{
|
|
|
|
width += x;
|
|
|
|
src_x -= x;
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
if (y < 0)
|
2005-11-16 01:41:46 +00:00
|
|
|
{
|
|
|
|
height += y;
|
|
|
|
src_y -= y;
|
|
|
|
y = 0;
|
|
|
|
}
|
2009-11-07 18:38:46 +00:00
|
|
|
if (x + width > LCD_WIDTH)
|
|
|
|
width = LCD_WIDTH - x;
|
|
|
|
if (y + height > LCD_HEIGHT)
|
|
|
|
height = LCD_HEIGHT - y;
|
|
|
|
#endif
|
|
|
|
|
2005-11-16 01:41:46 +00:00
|
|
|
src += stride * src_y + src_x; /* move starting point */
|
2009-11-07 18:38:46 +00:00
|
|
|
dst = LCDADDR(x, y);
|
2005-11-16 01:41:46 +00:00
|
|
|
|
2005-11-28 10:05:45 +00:00
|
|
|
do
|
2005-11-16 01:41:46 +00:00
|
|
|
{
|
2005-11-28 10:05:45 +00:00
|
|
|
memcpy(dst, src, width * sizeof(fb_data));
|
2005-11-16 01:41:46 +00:00
|
|
|
src += stride;
|
2005-11-28 10:05:45 +00:00
|
|
|
dst += LCD_WIDTH;
|
2005-11-16 01:41:46 +00:00
|
|
|
}
|
2009-10-26 01:35:31 +00:00
|
|
|
while (--height > 0);
|
2005-11-07 23:07:19 +00:00
|
|
|
}
|
|
|
|
|
2009-10-26 01:35:31 +00:00
|
|
|
/* Draw a partial native bitmap with transparency and foreground colors */
|
2008-04-12 07:53:33 +00:00
|
|
|
void ICODE_ATTR lcd_bitmap_transparent_part(const fb_data *src, int src_x,
|
|
|
|
int src_y, int stride, int x,
|
|
|
|
int y, int width, int height)
|
2006-01-28 23:12:20 +00:00
|
|
|
{
|
2009-10-26 01:35:31 +00:00
|
|
|
fb_data *dst;
|
|
|
|
unsigned fg = current_vp->fg_pattern;
|
2006-01-28 23:12:20 +00:00
|
|
|
|
2009-11-07 18:38:46 +00:00
|
|
|
/******************** Image in viewport clipping **********************/
|
|
|
|
/* nothing to draw? */
|
|
|
|
if ((width <= 0) || (height <= 0) || (x >= current_vp->width) ||
|
|
|
|
(y >= current_vp->height) || (x + width <= 0) || (y + height <= 0))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (x < 0)
|
2006-01-28 23:12:20 +00:00
|
|
|
{
|
|
|
|
width += x;
|
|
|
|
src_x -= x;
|
|
|
|
x = 0;
|
|
|
|
}
|
2009-11-07 18:38:46 +00:00
|
|
|
if (y < 0)
|
|
|
|
{
|
|
|
|
height += y;
|
|
|
|
src_y -= y;
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x + width > current_vp->width)
|
|
|
|
width = current_vp->width - x;
|
2009-10-26 01:35:31 +00:00
|
|
|
if (y + height > current_vp->height)
|
2009-11-07 18:38:46 +00:00
|
|
|
height = current_vp->height - y;
|
|
|
|
|
|
|
|
/* adjust for viewport */
|
|
|
|
x += current_vp->x;
|
|
|
|
y += current_vp->y;
|
|
|
|
|
|
|
|
#if defined(HAVE_VIEWPORT_CLIP)
|
|
|
|
/********************* Viewport on screen clipping ********************/
|
|
|
|
/* nothing to draw? */
|
|
|
|
if ((x >= LCD_WIDTH) || (y >= LCD_HEIGHT)
|
|
|
|
|| (x + width <= 0) || (y + height <= 0))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* clip image in viewport in screen */
|
|
|
|
if (x < 0)
|
|
|
|
{
|
|
|
|
width += x;
|
|
|
|
src_x -= x;
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
if (y < 0)
|
2006-01-28 23:12:20 +00:00
|
|
|
{
|
|
|
|
height += y;
|
|
|
|
src_y -= y;
|
|
|
|
y = 0;
|
|
|
|
}
|
2009-11-07 18:38:46 +00:00
|
|
|
if (x + width > LCD_WIDTH)
|
|
|
|
width = LCD_WIDTH - x;
|
|
|
|
if (y + height > LCD_HEIGHT)
|
|
|
|
height = LCD_HEIGHT - y;
|
|
|
|
#endif
|
2006-01-28 23:12:20 +00:00
|
|
|
|
|
|
|
src += stride * src_y + src_x; /* move starting point */
|
2009-11-07 18:38:46 +00:00
|
|
|
dst = LCDADDR(x, y);
|
2006-01-28 23:12:20 +00:00
|
|
|
|
2009-10-26 01:35:31 +00:00
|
|
|
#ifdef CPU_ARM
|
|
|
|
{
|
|
|
|
int w, px;
|
|
|
|
asm volatile (
|
|
|
|
".rowstart: \n"
|
|
|
|
"mov %[w], %[width] \n" /* Load width for inner loop */
|
|
|
|
".nextpixel: \n"
|
|
|
|
"ldrh %[px], [%[s]], #2 \n" /* Load src pixel */
|
|
|
|
"add %[d], %[d], #2 \n" /* Uncoditionally increment dst */
|
|
|
|
/* done here for better pipelining */
|
|
|
|
"cmp %[px], %[fgcolor] \n" /* Compare to foreground color */
|
|
|
|
"streqh %[fgpat], [%[d], #-2] \n" /* Store foregroud if match */
|
|
|
|
"cmpne %[px], %[transcolor] \n" /* Compare to transparent color */
|
|
|
|
"strneh %[px], [%[d], #-2] \n" /* Store dst if not transparent */
|
|
|
|
"subs %[w], %[w], #1 \n" /* Width counter has run down? */
|
|
|
|
"bgt .nextpixel \n" /* More in this row? */
|
|
|
|
"add %[s], %[s], %[sstp], lsl #1 \n" /* Skip over to start of next line */
|
|
|
|
"add %[d], %[d], %[dstp], lsl #1 \n"
|
|
|
|
"subs %[h], %[h], #1 \n" /* Height counter has run down? */
|
|
|
|
"bgt .rowstart \n" /* More rows? */
|
|
|
|
: [w]"=&r"(w), [h]"+&r"(height), [px]"=&r"(px),
|
|
|
|
[s]"+&r"(src), [d]"+&r"(dst)
|
|
|
|
: [width]"r"(width),
|
|
|
|
[sstp]"r"(stride - width),
|
|
|
|
[dstp]"r"(LCD_WIDTH - width),
|
|
|
|
[transcolor]"r"(TRANSPARENT_COLOR),
|
|
|
|
[fgcolor]"r"(REPLACEWITHFG_COLOR),
|
|
|
|
[fgpat]"r"(fg)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
#else /* optimized C version */
|
2006-01-28 23:12:20 +00:00
|
|
|
do
|
|
|
|
{
|
2009-10-26 01:35:31 +00:00
|
|
|
const fb_data *src_row = src;
|
|
|
|
fb_data *dst_row = dst;
|
|
|
|
fb_data *row_end = dst_row + width;
|
|
|
|
do
|
2006-01-28 23:12:20 +00:00
|
|
|
{
|
2009-10-26 01:35:31 +00:00
|
|
|
unsigned data = *src_row++;
|
|
|
|
if (data != TRANSPARENT_COLOR)
|
|
|
|
{
|
|
|
|
if (data == REPLACEWITHFG_COLOR)
|
2009-10-26 01:55:19 +00:00
|
|
|
data = fg;
|
|
|
|
*dst_row = data;
|
2009-10-26 01:35:31 +00:00
|
|
|
}
|
2006-01-28 23:12:20 +00:00
|
|
|
}
|
2009-10-26 01:35:31 +00:00
|
|
|
while (++dst_row < row_end);
|
2006-01-28 23:12:20 +00:00
|
|
|
src += stride;
|
|
|
|
dst += LCD_WIDTH;
|
|
|
|
}
|
2009-10-26 01:35:31 +00:00
|
|
|
while (--height > 0);
|
|
|
|
#endif
|
2006-01-28 23:12:20 +00:00
|
|
|
}
|