Logo
  • Main Page
  • Related Pages
  • Modules
  • Classes
  • Files

mmsfb_blit_blend_argb4444_to_rgb32.cpp

Go to the documentation of this file.
00001 /***************************************************************************
00002  *   Copyright (C) 2005-2007 Stefan Schwarzer, Jens Schneider,             *
00003  *                           Matthias Hardt, Guido Madaus                  *
00004  *                                                                         *
00005  *   Copyright (C) 2007-2008 BerLinux Solutions GbR                        *
00006  *                           Stefan Schwarzer & Guido Madaus               *
00007  *                                                                         *
00008  *   Copyright (C) 2009-2013 BerLinux Solutions GmbH                       *
00009  *                                                                         *
00010  *   Authors:                                                              *
00011  *      Stefan Schwarzer   <stefan.schwarzer@diskohq.org>,                 *
00012  *      Matthias Hardt     <matthias.hardt@diskohq.org>,                   *
00013  *      Jens Schneider     <jens.schneider@diskohq.org>,                   *
00014  *      Guido Madaus       <guido.madaus@diskohq.org>,                     *
00015  *      Patrick Helterhoff <patrick.helterhoff@diskohq.org>,               *
00016  *      René Bählkow       <rene.baehlkow@diskohq.org>                     *
00017  *                                                                         *
00018  *   This library is free software; you can redistribute it and/or         *
00019  *   modify it under the terms of the GNU Lesser General Public            *
00020  *   License version 2.1 as published by the Free Software Foundation.     *
00021  *                                                                         *
00022  *   This library is distributed in the hope that it will be useful,       *
00023  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00024  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
00025  *   Lesser General Public License for more details.                       *
00026  *                                                                         *
00027  *   You should have received a copy of the GNU Lesser General Public      *
00028  *   License along with this library; if not, write to the                 *
00029  *   Free Software Foundation, Inc.,                                       *
00030  *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
00031  **************************************************************************/
00032 
00033 #include "mmsgui/fb/mmsfbconv.h"
00034 
00035 #ifdef __HAVE_PF_ARGB4444__
00036 #ifdef __HAVE_PF_RGB32__
00037 
00038 #include "mmstools/mmstools.h"
00039 
00040 void mmsfb_blit_blend_argb4444_to_rgb32(MMSFBSurfacePlanes *src_planes, int src_height, int sx, int sy, int sw, int sh,
00041                                         MMSFBSurfacePlanes *dst_planes, int dst_height, int dx, int dy) {
00042     // first time?
00043     static bool firsttime = true;
00044     if (firsttime) {
00045         printf("DISKO: Using accelerated blend ARGB4444 to RGB32.\n");
00046         firsttime = false;
00047     }
00048 
00049     // get the first source ptr/pitch
00050     unsigned short int *src = (unsigned short int *)src_planes->ptr;
00051     int src_pitch = src_planes->pitch;
00052 
00053     // get the first destination ptr/pitch
00054     unsigned int *dst = (unsigned int *)dst_planes->ptr;
00055     int dst_pitch = dst_planes->pitch;
00056 
00057     // prepare...
00058     int src_pitch_pix = src_pitch >> 1;
00059     int dst_pitch_pix = dst_pitch >> 2;
00060     src+= sx + sy * src_pitch_pix;
00061     dst+= dx + dy * dst_pitch_pix;
00062 
00063     // check the surface range
00064     if (dst_pitch_pix - dx < sw - sx)
00065         sw = dst_pitch_pix - dx - sx;
00066     if (dst_height - dy < sh - sy)
00067         sh = dst_height - dy - sy;
00068     if ((sw <= 0)||(sh <= 0))
00069         return;
00070 
00071     unsigned int OLDDST = (*dst) + 1;
00072     unsigned short int OLDSRC = (*src) + 1;
00073     unsigned short int *src_end = src + src_pitch_pix * sh;
00074     int src_pitch_diff = src_pitch_pix - sw;
00075     int dst_pitch_diff = dst_pitch_pix - sw;
00076     register unsigned int d;
00077 
00078     // for all lines
00079     while (src < src_end) {
00080         // for all pixels in the line
00081         unsigned short int *line_end = src + sw;
00082         while (src < line_end) {
00083             // load pixel from memory and check if the previous pixel is the same
00084             register unsigned short int SRC  = *src;
00085 
00086             // is the source alpha channel 0x00 or 0x0f?
00087             register unsigned int A = SRC >> 12;
00088             if (A == 0x0f) {
00089                 // source pixel is not transparent, copy it directly to the destination
00090                 if (SRC==OLDSRC) {
00091                     // same pixel, use the previous value
00092                     *dst = d;
00093                     dst++;
00094                     src++;
00095                     continue;
00096                 }
00097 
00098                 // calc pixel and store it to destination
00099                 d =   0xff000000
00100                     | ((SRC & 0x0f00) << 12)
00101                     | ((SRC & 0x00f0) << 8)
00102                     | ((SRC & 0x000f) << 4);
00103                 *dst = d;
00104 
00105                 // next pixel
00106                 dst++;
00107                 src++;
00108                 OLDDST = (*dst) + 1;
00109                 OLDSRC = SRC;
00110                 continue;
00111             }
00112             else
00113             if (A) {
00114                 // source alpha is > 0x00 and < 0x0f
00115                 register unsigned int DST = *dst;
00116 
00117                 if ((DST==OLDDST)&&(SRC==OLDSRC)) {
00118                     // same pixel, use the previous value
00119                     *dst = d;
00120                     dst++;
00121                     src++;
00122                     continue;
00123                 }
00124                 OLDDST = DST;
00125                 OLDSRC = SRC;
00126 
00127                 register unsigned int SA= 0x10 - A;
00128                 unsigned int r = (DST << 8) >> 24;
00129                 unsigned int g = (DST << 16) >> 24;
00130                 unsigned int b = DST & 0xff;
00131 
00132                 // invert src alpha
00133                 r = (SA * r) >> 4;
00134                 g = (SA * g) >> 4;
00135                 b = (SA * b) >> 4;
00136 
00137                 // add src to dst
00138                 r += (A*(SRC & 0x0f00)) >> 8;
00139                 g += (A*(SRC & 0x00f0)) >> 4;
00140                 b +=  A*(SRC & 0x000f);
00141                 d =   0xff000000
00142                     | ((r >> 8) ? 0xff0000   : (r << 16))
00143                     | ((g >> 8) ? 0xff00     : (g << 8))
00144                     | ((b >> 8) ? 0xff       :  b);
00145                 *dst = d;
00146             }
00147 
00148             dst++;
00149             src++;
00150         }
00151 
00152         // go to the next line
00153         src+= src_pitch_diff;
00154         dst+= dst_pitch_diff;
00155     }
00156 }
00157 
00158 #endif
00159 #endif

Generated by doxygen