xserver-multidpi/cfb/cfbtile32.c

518 lines
12 KiB
C
Raw Normal View History

2003-11-14 16:54:54 +01:00
/*
* Fill 32 bit tiled rectangles. Used by both PolyFillRect and PaintWindow.
* no depth dependencies.
*/
/*
Copyright 1989, 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.
*/
#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif
#include <X11/X.h>
#include <X11/Xmd.h>
2003-11-14 16:54:54 +01:00
#include "servermd.h"
#include "gcstruct.h"
#include "window.h"
#include "pixmapstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include "cfb.h"
#include "cfbmskbits.h"
#include "cfb8bit.h"
#include "mergerop.h"
#include "mi.h"
#include "mispans.h"
#ifdef sparc
#define SHARED_IDCACHE
#endif
2003-11-14 17:49:22 +01:00
#if PSZ == 24
#define STORE(p) (*(p) = MROP_PREBUILT_SOLID(srcpix,*(p)))
/*#define STORE24(p,index) {\
register int idx = ((index) & 3)<< 1; \
*(p) = (((MROP_PREBUILT_SOLID(srcpix,*(p))<<cfb24Shift[idx])&cfbmask[idx])| \
(*(p)&cfbrmask[idx])); \
idx++; \
(p)++; \
*(p) = (((MROP_PREBUILT_SOLID(srcpix,*(p))>>cfb24Shift[idx])&cfbmask[idx])| \
(*(p)&cfbrmask[idx])); \
(p)--; \
}*/
#define STORE24(p,index) MROP_PREBUILT_SOLID24(srcpix, (p), index)
#define STORE_MASK(p,mask) (*(p) = MROP_PREBUILT_MASK(srcpix,*(p),(mask)))
#define QSTORE(p) ((*(p) = MROP_PREBUILT_SOLID(((srcpix<<24)|srcpix),*(p))), \
(p)++,(*(p) = MROP_PREBUILT_SOLID(((srcpix<<16)|(srcpix>>8)),*(p))), \
(p)++,(*(p) = MROP_PREBUILT_SOLID(((srcpix<<8)|(srcpix>>16)),*(p))))
#if (MROP == Mcopy) && defined(FAST_CONSTANT_OFFSET_MODE) && defined(SHARED_IDCACHE)
# define Expand(left,right) {\
int part = nlwMiddle & ((PGSZB*2)-1); \
nlwMiddle *= 3; \
nlwMiddle >>= PWSH + 3; \
while (h--) { \
srcpix = psrc[srcy]; \
MROP_PREBUILD(srcpix); \
++srcy; \
if (srcy == tileHeight) \
srcy = 0; \
left \
p += part; \
switch (part) { \
case 7: \
STORE24(p - 7, xtmp - 7); \
case 6: \
STORE24(p - 6, xtmp - 6); \
case 5: \
STORE24(p - 5, xtmp - 5); \
case 4: \
STORE24(p - 4, xtmp - 4); \
case 3: \
STORE24(p - 3, xtmp - 3); \
case 2: \
STORE24(p - 2, xtmp - 2); \
case 1: \
STORE24(p - 1, xtmp - 1); \
} \
nlw = nlwMiddle; \
while (nlw) { \
STORE24 (p + 0, xtmp + 0); \
STORE24 (p + 1, xtmp + 1); \
STORE24 (p + 2, xtmp + 2); \
STORE24 (p + 3, xtmp + 3); \
STORE24 (p + 4, xtmp + 4); \
STORE24 (p + 5, xtmp + 5); \
STORE24 (p + 6, xtmp + 6); \
STORE24 (p + 7, xtmp + 7); \
p += 8; \
xtmp += 8; \
nlw--; \
} \
right \
p += nlwExtra; \
} \
}
#else
#define Expand(left,right) {\
while (h--) { \
srcpix = psrc[srcy]; \
MROP_PREBUILD(srcpix); \
++srcy; \
if (srcy == tileHeight) \
srcy = 0; \
left \
while (nlw--) \
{ \
STORE24(p,xtmp); \
if(xtmp&3) p++; \
xtmp++; \
} \
right \
p += nlwExtra; \
} \
}
#endif
#else /*PSZ != 24*/
2003-11-14 16:54:54 +01:00
#define STORE(p) (*(p) = MROP_PREBUILT_SOLID(srcpix,*(p)))
#if (MROP == Mcopy) && defined(FAST_CONSTANT_OFFSET_MODE) && defined(SHARED_IDCACHE)
# define Expand(left,right) {\
int part = nlwMiddle & ((PGSZB*2)-1); \
nlwMiddle >>= PWSH + 1; \
while (h--) { \
srcpix = psrc[srcy]; \
MROP_PREBUILD(srcpix); \
++srcy; \
if (srcy == tileHeight) \
srcy = 0; \
left \
p += part; \
switch (part) { \
case 7: \
STORE(p - 7); \
case 6: \
STORE(p - 6); \
case 5: \
STORE(p - 5); \
case 4: \
STORE(p - 4); \
case 3: \
STORE(p - 3); \
case 2: \
STORE(p - 2); \
case 1: \
STORE(p - 1); \
} \
nlw = nlwMiddle; \
while (nlw) { \
STORE (p + 0); \
STORE (p + 1); \
STORE (p + 2); \
STORE (p + 3); \
STORE (p + 4); \
STORE (p + 5); \
STORE (p + 6); \
STORE (p + 7); \
p += 8; \
nlw--; \
} \
right \
p += nlwExtra; \
} \
}
#else
#define Expand(left,right) {\
while (h--) { \
srcpix = psrc[srcy]; \
MROP_PREBUILD(srcpix); \
++srcy; \
if (srcy == tileHeight) \
srcy = 0; \
left \
nlw = nlwMiddle; \
while (nlw--) \
{ \
STORE(p); \
p++; \
} \
right \
p += nlwExtra; \
} \
}
#endif
2003-11-14 17:49:22 +01:00
#endif /*PSZ == 24*/
2003-11-14 16:54:54 +01:00
void
MROP_NAME(cfbFillRectTile32) (pDrawable, pGC, nBox, pBox)
DrawablePtr pDrawable;
GCPtr pGC;
int nBox; /* number of boxes to fill */
BoxPtr pBox; /* pointer to list of boxes to fill */
{
2003-11-14 17:49:22 +01:00
register CfbBits srcpix;
CfbBits *psrc; /* pointer to bits in tile, if needed */
2003-11-14 16:54:54 +01:00
int tileHeight; /* height of the tile */
int nlwDst; /* width in longwords of the dest pixmap */
int w; /* width of current box */
register int h; /* height of current box */
2003-11-14 17:49:22 +01:00
register CfbBits startmask;
register CfbBits endmask; /* masks for reggedy bits at either end of line */
2003-11-14 16:54:54 +01:00
int nlwMiddle; /* number of longwords between sides of boxes */
int nlwExtra; /* to get from right of box to left of next span */
2003-11-14 17:49:22 +01:00
register int nlw = 0; /* loop version of nlwMiddle */
register CfbBits *p; /* pointer to bits we're writing */
2003-11-14 16:54:54 +01:00
int y; /* current scan line */
int srcy; /* current tile position */
2003-11-14 17:49:22 +01:00
CfbBits *pbits;/* pointer to start of pixmap */
2003-11-14 16:54:54 +01:00
PixmapPtr tile; /* rotated, expanded tile */
#if MROP == 0 && PSZ == 24
DeclareMergeRop()
#else
2003-11-14 16:54:54 +01:00
MROP_DECLARE_REG()
#endif
2003-11-14 16:54:54 +01:00
MROP_PREBUILT_DECLARE()
2003-11-14 17:49:22 +01:00
#if PSZ == 24
CfbBits xtmp;
#endif
2003-11-14 16:54:54 +01:00
2003-11-14 17:49:22 +01:00
tile = pGC->pRotatedPixmap;
2003-11-14 16:54:54 +01:00
tileHeight = tile->drawable.height;
2003-11-14 17:49:22 +01:00
psrc = (CfbBits *)tile->devPrivate.ptr;
2003-11-14 16:54:54 +01:00
#if MROP == 0 && PSZ == 24
InitializeMergeRop(pGC->alu, pGC->planemask);
#else
2003-11-14 16:54:54 +01:00
MROP_INITIALIZE(pGC->alu, pGC->planemask);
#endif
2003-11-14 16:54:54 +01:00
cfbGetLongWidthAndPointer (pDrawable, nlwDst, pbits)
while (nBox--)
{
w = pBox->x2 - pBox->x1;
h = pBox->y2 - pBox->y1;
y = pBox->y1;
2003-11-14 17:49:22 +01:00
#if PSZ == 24
xtmp = pBox->x1;
p = pbits + (y * nlwDst) + ((pBox->x1*3) >> 2);
/* p = pbits + (y * nlwDst) + ((pBox->x1>> 2)*3);*/
#else
2003-11-14 16:54:54 +01:00
p = pbits + (y * nlwDst) + (pBox->x1 >> PWSH);
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
srcy = y % tileHeight;
2003-11-14 17:49:22 +01:00
#if PSZ == 24
if (w == 1 && ((pBox->x1 & 3) == 0 || (pBox->x1 & 3) == 3))
#else
2003-11-14 16:54:54 +01:00
if ( ((pBox->x1 & PIM) + w) <= PPW)
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
{
maskpartialbits(pBox->x1, w, startmask);
nlwExtra = nlwDst;
while (h--)
{
srcpix = psrc[srcy];
MROP_PREBUILD(srcpix);
++srcy;
if (srcy == tileHeight)
srcy = 0;
*p = MROP_PREBUILT_MASK (srcpix, *p, startmask);
p += nlwExtra;
}
}
else
{
maskbits(pBox->x1, w, startmask, endmask, nlwMiddle);
nlwExtra = nlwDst - nlwMiddle;
if (startmask)
{
nlwExtra -= 1;
if (endmask)
{
Expand(*p = MROP_PREBUILT_MASK(srcpix, *p, startmask); p++;,
*p = MROP_PREBUILT_MASK(srcpix, *p, endmask);)
}
else
{
Expand(*p = MROP_PREBUILT_MASK(srcpix, *p, startmask); p++;,
;)
}
}
else
{
if (endmask)
{
Expand(;,
*p = MROP_PREBUILT_MASK(srcpix, *p, endmask);)
}
else
{
Expand(;,
;)
}
}
}
pBox++;
}
}
void
MROP_NAME(cfbTile32FS)(pDrawable, pGC, nInit, pptInit, pwidthInit, fSorted)
DrawablePtr pDrawable;
GCPtr pGC;
int nInit; /* number of spans to fill */
DDXPointPtr pptInit; /* pointer to list of start points */
int *pwidthInit; /* pointer to list of n widths */
int fSorted;
{
/* next three parameters are post-clip */
int n; /* number of spans to fill */
DDXPointPtr ppt; /* pointer to list of start points */
int *pwidth;/* pointer to list of n widths */
2003-11-14 17:49:22 +01:00
CfbBits *pbits; /* pointer to start of bitmap */
2003-11-14 16:54:54 +01:00
int nlwDst; /* width in longwords of bitmap */
2003-11-14 17:49:22 +01:00
register CfbBits *p; /* pointer to current longword in bitmap */
2003-11-14 16:54:54 +01:00
register int w; /* current span width */
register int nlw;
register int x;
2003-11-14 17:49:22 +01:00
register CfbBits startmask;
register CfbBits endmask;
register CfbBits srcpix;
2003-11-14 16:54:54 +01:00
int y;
int *pwidthFree;/* copies of the pointers to free */
DDXPointPtr pptFree;
PixmapPtr tile;
2003-11-14 17:49:22 +01:00
CfbBits *psrc; /* pointer to bits in tile */
2003-11-14 16:54:54 +01:00
int tileHeight;/* height of the tile */
#if MROP == 0 && PSZ == 24
DeclareMergeRop()
#else
MROP_DECLARE_REG()
#endif
2003-11-14 16:54:54 +01:00
MROP_PREBUILT_DECLARE()
2003-11-14 17:49:22 +01:00
#if PSZ == 24
CfbBits xtmp;
#endif
2003-11-14 16:54:54 +01:00
n = nInit * miFindMaxBand( cfbGetCompositeClip(pGC) );
pwidthFree = (int *)ALLOCATE_LOCAL(n * sizeof(int));
pptFree = (DDXPointRec *)ALLOCATE_LOCAL(n * sizeof(DDXPointRec));
if(!pptFree || !pwidthFree)
{
if (pptFree) DEALLOCATE_LOCAL(pptFree);
if (pwidthFree) DEALLOCATE_LOCAL(pwidthFree);
return;
}
pwidth = pwidthFree;
ppt = pptFree;
n = miClipSpans( cfbGetCompositeClip(pGC),
pptInit, pwidthInit, nInit,
ppt, pwidth, fSorted);
2003-11-14 17:49:22 +01:00
tile = pGC->pRotatedPixmap;
2003-11-14 16:54:54 +01:00
tileHeight = tile->drawable.height;
2003-11-14 17:49:22 +01:00
psrc = (CfbBits *)tile->devPrivate.ptr;
2003-11-14 16:54:54 +01:00
#if MROP == 0 && PSZ == 24
InitializeMergeRop(pGC->alu, pGC->planemask);
#else
2003-11-14 16:54:54 +01:00
MROP_INITIALIZE(pGC->alu, pGC->planemask);
#endif
2003-11-14 16:54:54 +01:00
cfbGetLongWidthAndPointer (pDrawable, nlwDst, pbits)
#if MROP == Mcopy
if (!(tileHeight & (tileHeight-1)))
{
tileHeight--;
while (n--)
{
x = ppt->x;
y = ppt->y;
++ppt;
w = *pwidth++;
2003-11-14 17:49:22 +01:00
#if PSZ == 24
/* p = pbits + (y * nlwDst) + ((x*3) >> 2);*/
xtmp = x;
p = pbits + (y * nlwDst) + ((x >> 2)*3);
#else
2003-11-14 16:54:54 +01:00
p = pbits + (y * nlwDst) + (x >> PWSH);
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
srcpix = psrc[y & tileHeight];
MROP_PREBUILD(srcpix);
2003-11-14 17:49:22 +01:00
#if PSZ == 24
if ((x & 3) + w < 5)
#else
2003-11-14 16:54:54 +01:00
if ((x & PIM) + w < PPW)
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
{
maskpartialbits(x, w, startmask);
*p = MROP_PREBUILT_MASK (srcpix, *p, startmask);
}
else
{
maskbits(x, w, startmask, endmask, nlw);
if (startmask)
{
*p = MROP_PREBUILT_MASK(srcpix, *p, startmask);
2003-11-14 17:49:22 +01:00
#if PSZ == 24
if(xtmp&3) p++;
xtmp++;
#else
2003-11-14 16:54:54 +01:00
p++;
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
}
while (nlw--)
{
2003-11-14 17:49:22 +01:00
#if PSZ == 24
STORE24(p,xtmp);
if(xtmp&3) p++;
++xtmp;
#else
2003-11-14 16:54:54 +01:00
STORE(p);
++p;
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
}
if (endmask)
{
*p = MROP_PREBUILT_MASK(srcpix, *p, endmask);
}
}
}
}
else
#endif
{
while (n--)
{
x = ppt->x;
y = ppt->y;
++ppt;
w = *pwidth++;
2003-11-14 17:49:22 +01:00
#if PSZ == 24
/* p = pbits + (y * nlwDst) + ((x *3)>> 2);*/
p = pbits + (y * nlwDst) + ((x >> 2)*3);
xtmp = x;
#else
2003-11-14 16:54:54 +01:00
p = pbits + (y * nlwDst) + (x >> PWSH);
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
srcpix = psrc[y % tileHeight];
MROP_PREBUILD(srcpix);
2003-11-14 17:49:22 +01:00
#if PSZ == 24
if ((x & 3) + w < 5)
#else
2003-11-14 16:54:54 +01:00
if ((x & PIM) + w < PPW)
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
{
maskpartialbits(x, w, startmask);
*p = MROP_PREBUILT_MASK (srcpix, *p, startmask);
}
else
{
maskbits(x, w, startmask, endmask, nlw);
if (startmask)
{
*p = MROP_PREBUILT_MASK(srcpix, *p, startmask);
2003-11-14 17:49:22 +01:00
#if PSZ == 24
if(xtmp&3)p++;
xtmp++;
#else
2003-11-14 16:54:54 +01:00
p++;
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
}
while (nlw--)
{
2003-11-14 17:49:22 +01:00
#if PSZ == 24
STORE24(p,xtmp);
if(xtmp&3)p++;
xtmp++;
#else
2003-11-14 16:54:54 +01:00
STORE(p);
++p;
2003-11-14 17:49:22 +01:00
#endif
2003-11-14 16:54:54 +01:00
}
if (endmask)
{
*p = MROP_PREBUILT_MASK(srcpix, *p, endmask);
}
}
}
}
DEALLOCATE_LOCAL(pptFree);
DEALLOCATE_LOCAL(pwidthFree);
}