(file) Return to cfbgetsp.c CVS log (file) (dir) Up to [XFree86 CVS] / xc / programs / Xserver / cfb

File: [XFree86 CVS] / xc / programs / Xserver / cfb / cfbgetsp.c (download)
Revision: 3.13, Mon Dec 25 15:35:16 2006 UTC (6 years, 5 months ago) by tsi
Branch: MAIN
CVS Tags: xf-4_8_0-bindist, xf-4_8_0, xf-4_8-branch, xf-4_7_99_9, xf-4_7_99_8, xf-4_7_99_7, xf-4_7_99_6, xf-4_7_99_5, xf-4_7_99_4, xf-4_7_99_31, xf-4_7_99_30, xf-4_7_99_3, xf-4_7_99_29, xf-4_7_99_28, xf-4_7_99_27, xf-4_7_99_26, xf-4_7_99_25, xf-4_7_99_24, xf-4_7_99_23, xf-4_7_99_22, xf-4_7_99_21, xf-4_7_99_20, xf-4_7_99_2, xf-4_7_99_19, xf-4_7_99_18, xf-4_7_99_17, xf-4_7_99_16, xf-4_7_99_15, xf-4_7_99_14, xf-4_7_99_13, xf-4_7_99_12, xf-4_7_99_11, xf-4_7_99_10, xf-4_7_99_1, xf-4_7_0, xf-4_7-branch, xf-4_6_99_29, xf-4_6_99_28, xf-4_6_99_27, xf-4_6_99_26, xf-4_6_99_25, xf-4_6_99_24, xf-4_6_99_23, xf-4_6_99_22, xf-4_6_99_21, xf-4_6_99_20, xf-4_6_99_19, xf-4_6_99_18, xf-4_6_99_17, xf-4_6_99_16, xf-4_6_99_15, HEAD
Changes since 3.12: +8 -8 lines
  98. A collection of cfb24 cleanups (Marc La France).
  97. Fix unaligned accesses in cfb's horizontal polysegment drawing
      (Shin Takemura).
  96. Finish Keith Packard's removal of 64-bit accesses to cfb framebuffers
      (Marc La France).

/* $XFree86: xc/programs/Xserver/cfb/cfbgetsp.c,v 3.12tsi Exp $ */
/***********************************************************

Copyright 1987, 1998  The Open Group

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.


Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its 
documentation for any purpose and without fee is hereby granted, 
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in 
supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.  

DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.

******************************************************************/

#include <X11/X.h>
#include <X11/Xmd.h>
#include "servermd.h"

#include "misc.h"
#include "region.h"
#include "gc.h"
#include "windowstr.h"
#include "pixmapstr.h"
#include "scrnintstr.h"

#include "cfb.h"
#include "cfbmskbits.h"

/* GetSpans -- for each span, gets bits from drawable starting at ppt[i]
 * and continuing for pwidth[i] bits
 * Each scanline returned will be server scanline padded, i.e., it will come
 * out to an integral number of words.
 */
/*
    DrawablePtr		pDrawable;	drawable from which to get bits
    int			wMax;		largest value of all *pwidths
    DDXPointPtr		ppt;		points to start copying from
    int			*pwidth;	list of number of bits to copy
    int			nspans;		number of scanlines to copy
    char		*pchardstStart; where to put the bits
*/

void
cfbGetSpans(DrawablePtr pDrawable, int wMax, DDXPointPtr ppt,
	    int *pwidth, int nspans, char *pchardstStart)
{
    PixelGroup		*pdstStart = (PixelGroup *)pchardstStart;
    PixelGroup		*pdst;		/* where to put the bits */
    PixelGroup		*psrc;		/* where to get the bits */
    PixelGroup		tmpSrc;		/* scratch buffer for bits */
    PixelGroup		*psrcBase;	/* start of src bitmap */
    int			widthSrc;	/* width of pixmap in bytes */
    DDXPointPtr		pptLast;	/* one past last point to get */
    int         	xEnd;		/* last pixel to copy from */
    int			nl, srcBit;
    int			w;
    PixelGroup		*pdstNext;
#if PSZ == 24
    char		*psrcb, *pdstb;
    int			xIndex = 0;
#else
    int	nstart; 
#if PSZ != 32 || PPW != 1
    int	 		nend; 
#endif
    PixelGroup		startmask, endmask;
    int			nlMiddle;
#endif

    switch (pDrawable->bitsPerPixel) {
	case 1:
	    mfbGetSpans(pDrawable, wMax, ppt, pwidth, nspans, pchardstStart);
	    return;
	case PSZ:
	    break;
	default:
	    FatalError("cfbGetSpans: invalid depth\n");
    }

    /*
     * XFree86 DDX empties the root borderClip when the VT is
     * switched away; this checks for that case
     */
    if (!cfbDrawableEnabled(pDrawable))
	return;
    
    cfbGetLongWidthAndPointer (pDrawable, widthSrc, psrcBase)

#ifdef PIXEL_ADDR
# if PSZ != 24
    if ((nspans == 1) && (*pwidth == 1))
    {
	tmpSrc = *((PixelType *)(psrcBase + (ppt->y * widthSrc))
		   + ppt->x);
#if BITMAP_BIT_ORDER == MSBFirst
	tmpSrc <<= (sizeof (CfbBits) - sizeof (PixelType)) * 8;
#endif
	*pdstStart = tmpSrc;
	return;
    }
# endif /* PSZ != 24 */
#endif
    pdst = pdstStart;
    pptLast = ppt + nspans;
    while(ppt < pptLast)
    {
#if PSZ == 24
	xEnd = min(ppt->x + *pwidth, widthSrc * sizeof(CfbBits) / PSZB);
	w = xEnd - ppt->x;
	psrc = psrcBase + ppt->y * widthSrc;
	srcBit = ppt->x;
	psrcb = (char *)psrc + (ppt->x * PSZB);
	xIndex = 0;
	pdstb = (char *)pdst;
    	pdstNext = pdst + (((w + 1) * PSZB) / PGSZB);
#else
	xEnd = min(ppt->x + *pwidth, widthSrc << PWSH);
	w = xEnd - ppt->x;
	psrc = psrcBase + ppt->y * widthSrc + (ppt->x >> PWSH); 
	srcBit = ppt->x & PIM;
    	pdstNext = pdst + ((w + PPW - 1) >> PWSH);
#endif

#if PSZ == 24
	if (w < 0)
	  FatalError("cfb24GetSpans: Internal error (w < 0)\n");
	nl = w;
	while (nl--){ 
	  psrc = (PixelGroup *)((unsigned long)psrcb & ~(PGSZB - 1));
	  getbits24(psrc, tmpSrc, srcBit);
	  pdst = (PixelGroup *)((unsigned long)pdstb & ~(PGSZB - 1));
	  putbits24(tmpSrc, PPW, pdst, ~((CfbBits)0), xIndex);
	  srcBit++;
	  psrcb += PSZB;
	  xIndex++;
	  pdstb += PSZB;
	} 
	pdst = pdstNext;
#else /* PSZ == 24 */
	if (srcBit + w <= PPW) 
	{ 
	    getbits(psrc, srcBit, w, tmpSrc);
	    putbits(tmpSrc, 0, w, pdst, ~((CfbBits)0)); 
	    pdst++;
	} 
	else 
	{ 
	    maskbits(ppt->x, w, startmask, endmask, nlMiddle);
	    nstart = 0; 
	    if (startmask) 
	    { 
		nstart = PPW - srcBit; 
		getbits(psrc, srcBit, nstart, tmpSrc);
		putbits(tmpSrc, 0, nstart, pdst, ~((CfbBits)0));
		if(srcBit + nstart >= PPW)
		    psrc++;
	    } 
	    nl = nlMiddle; 
	    while (nl--) 
	    { 
		tmpSrc = *psrc;
		putbits(tmpSrc, nstart, PPW, pdst, ~((CfbBits)0));
		psrc++;
		pdst++;
	    } 
	    if (endmask) 
	    { 
#if PSZ != 32 || PPW != 1
		nend = xEnd & PIM; 
#endif
		getbits(psrc, 0, nend, tmpSrc);
		putbits(tmpSrc, nstart, nend, pdst, ~((CfbBits)0));
	    } 
	    pdst = pdstNext;
	} 
#endif /* PSZ == 24 */
        ppt++;
	pwidth++;
    }
}

Powered by
ViewCVS 0.9.2