/*********************************************************** Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts, and the Massachusetts Institute of Technology, Cambridge, 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 names of Digital or MIT 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. ******************************************************************/ /* $Header: mfbgetsp.c,v 1.14 87/06/15 02:36:03 sue Exp $ */ #include "X.h" #include "Xmd.h" #include "misc.h" #include "region.h" #include "gc.h" #include "windowstr.h" #include "pixmapstr.h" #include "scrnintstr.h" #include "os.h" #include "opaque.h" #include "mfb.h" #include "maskbits.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. */ unsigned int * mfbGetSpans(pDrawable, wMax, ppt, pwidth, nspans) DrawablePtr pDrawable; /* drawable from which to get bits */ int wMax; /* largest value of all *pwidths */ register DDXPointPtr ppt; /* points to start copying from */ int *pwidth; /* list of number of bits to copy */ int nspans; /* number of scanlines to copy */ { register unsigned int *pdst; /* where to put the bits */ register unsigned int *psrc; /* where to get the bits */ register unsigned int tmpSrc; /* scratch buffer for bits */ unsigned int *psrcBase; /* start of src bitmap */ int widthSrc; /* width of pixmap in bytes */ register DDXPointPtr pptLast; /* one past last point to get */ int xEnd; /* last pixel to copy from */ register int nstart; int nend; int srcStartOver; int startmask, endmask, nlMiddle, nl, srcBit; int w; unsigned int *pdstStart; unsigned int *pdstNext; pptLast = ppt + nspans; if (pDrawable->type == DRAWABLE_WINDOW) { psrcBase = (unsigned int *) (((PixmapPtr)(pDrawable->pScreen->devPrivate))->devPrivate); widthSrc = (int) ((PixmapPtr)(pDrawable->pScreen->devPrivate))->devKind; } else { psrcBase = (unsigned int *)(((PixmapPtr)pDrawable)->devPrivate); widthSrc = (int)(((PixmapPtr)pDrawable)->devKind); } pdstStart = (unsigned int *)Xalloc(nspans * PixmapBytePad(wMax, 1)); pdst = pdstStart; while(ppt < pptLast) { xEnd = min(ppt->x + *pwidth, widthSrc << 3); psrc = psrcBase + ((long)ppt->y * (long)(widthSrc >> L2BSP)) + (ppt->x >> L2BP); w = xEnd - ppt->x; srcBit = ppt->x & BWM; /* This shouldn't be needed */ pdstNext = pdst + PixmapWidthInPadUnits(w, 1); if (srcBit + w <= BW) { getbits(psrc, srcBit, w, tmpSrc); putbits(tmpSrc, 0, w, pdst); pdst++; } else { maskbits(ppt->x, w, startmask, endmask, nlMiddle); if (startmask) nstart = BW - srcBit; else nstart = 0; if (endmask) nend = xEnd & BWM; srcStartOver = srcBit + nstart > (BW-1); if (startmask) { getbits(psrc, srcBit, nstart, tmpSrc); putbits(tmpSrc, 0, nstart, pdst); if(srcStartOver) psrc++; } nl = nlMiddle; while (nl--) { tmpSrc = *psrc; putbits(tmpSrc, nstart, BW, pdst); psrc++; pdst++; } if (endmask) { getbits(psrc, 0, nend, tmpSrc); putbits(tmpSrc, nstart, nend, pdst); if(nstart + nend > BW) pdst++; } pdst++; while(pdst < pdstNext) { *pdst++ = 0; } } ppt++; } return(pdstStart); }