2009-06-25 14:16:43 -06:00
|
|
|
/*
|
|
|
|
* Copyright © 2001 Keith Packard
|
|
|
|
*
|
|
|
|
* Partly based on code that is Copyright © The XFree86 Project Inc.
|
|
|
|
*
|
|
|
|
* 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, and that the name of Keith Packard not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the software without
|
|
|
|
* specific, written prior permission. Keith Packard makes no
|
|
|
|
* representations about the suitability of this software for any purpose. It
|
|
|
|
* is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL KEITH PACKARD 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_DIX_CONFIG_H
|
|
|
|
#include <dix-config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "uxa-priv.h"
|
2010-05-10 16:32:28 -06:00
|
|
|
#include <xorgVersion.h>
|
2009-06-25 14:16:43 -06:00
|
|
|
|
|
|
|
#ifdef RENDER
|
|
|
|
#include "mipict.h"
|
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
static void uxa_composite_fallback_pict_desc(PicturePtr pict, char *string,
|
|
|
|
int n)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
char format[20];
|
|
|
|
char size[20];
|
|
|
|
char loc;
|
|
|
|
|
|
|
|
if (!pict) {
|
|
|
|
snprintf(string, n, "None");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pict->pDrawable == NULL) {
|
|
|
|
snprintf(string, n, "source-only");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (pict->format) {
|
|
|
|
case PICT_a8r8g8b8:
|
|
|
|
snprintf(format, 20, "ARGB8888");
|
|
|
|
break;
|
|
|
|
case PICT_x8r8g8b8:
|
|
|
|
snprintf(format, 20, "XRGB8888");
|
|
|
|
break;
|
|
|
|
case PICT_r5g6b5:
|
|
|
|
snprintf(format, 20, "RGB565 ");
|
|
|
|
break;
|
|
|
|
case PICT_x1r5g5b5:
|
|
|
|
snprintf(format, 20, "RGB555 ");
|
|
|
|
break;
|
|
|
|
case PICT_a8:
|
|
|
|
snprintf(format, 20, "A8 ");
|
|
|
|
break;
|
|
|
|
case PICT_a1:
|
|
|
|
snprintf(format, 20, "A1 ");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
snprintf(format, 20, "0x%x", (int)pict->format);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
loc = uxa_drawable_is_offscreen(pict->pDrawable) ? 's' : 'm';
|
|
|
|
|
|
|
|
snprintf(size, 20, "%dx%d%s", pict->pDrawable->width,
|
|
|
|
pict->pDrawable->height, pict->repeat ? " R" : "");
|
|
|
|
|
|
|
|
snprintf(string, n, "%p:%c fmt %s (%s)%s",
|
|
|
|
pict->pDrawable, loc, format, size,
|
|
|
|
pict->alphaMap ? " with alpha map" :"");
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_print_composite_fallback(const char *func, CARD8 op,
|
|
|
|
PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_screen_t *uxa_screen = uxa_get_screen(pDst->pDrawable->pScreen);
|
|
|
|
char sop[20];
|
|
|
|
char srcdesc[40], maskdesc[40], dstdesc[40];
|
|
|
|
|
|
|
|
if (! uxa_screen->fallback_debug)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (op) {
|
|
|
|
case PictOpSrc:
|
|
|
|
sprintf(sop, "Src");
|
|
|
|
break;
|
|
|
|
case PictOpOver:
|
|
|
|
sprintf(sop, "Over");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sprintf(sop, "0x%x", (int)op);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
uxa_composite_fallback_pict_desc(pSrc, srcdesc, 40);
|
|
|
|
uxa_composite_fallback_pict_desc(pMask, maskdesc, 40);
|
|
|
|
uxa_composite_fallback_pict_desc(pDst, dstdesc, 40);
|
|
|
|
|
|
|
|
ErrorF("Composite fallback at %s:\n"
|
|
|
|
" op %s, \n"
|
|
|
|
" src %s, \n"
|
|
|
|
" mask %s, \n"
|
|
|
|
" dst %s, \n"
|
|
|
|
" screen %s\n",
|
|
|
|
func, sop, srcdesc, maskdesc, dstdesc,
|
|
|
|
uxa_screen->swappedOut ? "swapped out" : "normal");
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
Bool uxa_op_reads_destination(CARD8 op)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
/* FALSE (does not read destination) is the list of ops in the protocol
|
|
|
|
* document with "0" in the "Fb" column and no "Ab" in the "Fa" column.
|
|
|
|
* That's just Clear and Src. ReduceCompositeOp() will already have
|
|
|
|
* converted con/disjoint clear/src to Clear or Src.
|
|
|
|
*/
|
|
|
|
switch (op) {
|
|
|
|
case PictOpClear:
|
|
|
|
case PictOpSrc:
|
|
|
|
return FALSE;
|
|
|
|
default:
|
|
|
|
return TRUE;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_get_pixel_from_rgba(CARD32 * pixel,
|
|
|
|
CARD16 red,
|
|
|
|
CARD16 green, CARD16 blue, CARD16 alpha, CARD32 format)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
int rbits, bbits, gbits, abits;
|
|
|
|
int rshift, bshift, gshift, ashift;
|
|
|
|
|
|
|
|
rbits = PICT_FORMAT_R(format);
|
|
|
|
gbits = PICT_FORMAT_G(format);
|
|
|
|
bbits = PICT_FORMAT_B(format);
|
|
|
|
abits = PICT_FORMAT_A(format);
|
|
|
|
if (abits == 0)
|
|
|
|
abits = PICT_FORMAT_BPP(format) - (rbits+gbits+bbits);
|
|
|
|
|
|
|
|
if (PICT_FORMAT_TYPE(format) == PICT_TYPE_A) {
|
|
|
|
*pixel = alpha >> (16 - abits);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!PICT_FORMAT_COLOR(format))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (PICT_FORMAT_TYPE(format) == PICT_TYPE_ARGB) {
|
|
|
|
bshift = 0;
|
|
|
|
gshift = bbits;
|
|
|
|
rshift = gshift + gbits;
|
|
|
|
ashift = rshift + rbits;
|
|
|
|
} else { /* PICT_TYPE_ABGR */
|
|
|
|
rshift = 0;
|
|
|
|
gshift = rbits;
|
|
|
|
bshift = gshift + gbits;
|
|
|
|
ashift = bshift + bbits;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pixel = 0;
|
|
|
|
*pixel |= (blue >> (16 - bbits)) << bshift;
|
|
|
|
*pixel |= (red >> (16 - rbits)) << rshift;
|
|
|
|
*pixel |= (green >> (16 - gbits)) << gshift;
|
|
|
|
*pixel |= (alpha >> (16 - abits)) << ashift;
|
|
|
|
|
|
|
|
return TRUE;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_get_rgba_from_pixel(CARD32 pixel,
|
|
|
|
CARD16 * red,
|
|
|
|
CARD16 * green,
|
|
|
|
CARD16 * blue, CARD16 * alpha, CARD32 format)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
int rbits, bbits, gbits, abits;
|
|
|
|
int rshift, bshift, gshift, ashift;
|
|
|
|
|
|
|
|
rbits = PICT_FORMAT_R(format);
|
|
|
|
gbits = PICT_FORMAT_G(format);
|
|
|
|
bbits = PICT_FORMAT_B(format);
|
|
|
|
abits = PICT_FORMAT_A(format);
|
|
|
|
|
|
|
|
if (PICT_FORMAT_TYPE(format) == PICT_TYPE_A) {
|
|
|
|
rshift = gshift = bshift = ashift = 0;
|
|
|
|
} else if (PICT_FORMAT_TYPE(format) == PICT_TYPE_ARGB) {
|
|
|
|
bshift = 0;
|
|
|
|
gshift = bbits;
|
|
|
|
rshift = gshift + gbits;
|
|
|
|
ashift = rshift + rbits;
|
|
|
|
} else if (PICT_FORMAT_TYPE(format) == PICT_TYPE_ABGR) {
|
|
|
|
rshift = 0;
|
|
|
|
gshift = rbits;
|
|
|
|
bshift = gshift + gbits;
|
|
|
|
ashift = bshift + bbits;
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rbits) {
|
|
|
|
*red = ((pixel >> rshift) & ((1 << rbits) - 1)) << (16 - rbits);
|
|
|
|
while (rbits < 16) {
|
|
|
|
*red |= *red >> rbits;
|
|
|
|
rbits <<= 1;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
*red = 0;
|
|
|
|
|
|
|
|
if (gbits) {
|
|
|
|
*green = ((pixel >> gshift) & ((1 << gbits) - 1)) << (16 - gbits);
|
|
|
|
while (gbits < 16) {
|
|
|
|
*green |= *green >> gbits;
|
|
|
|
gbits <<= 1;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
*green = 0;
|
|
|
|
|
|
|
|
if (bbits) {
|
|
|
|
*blue = ((pixel >> bshift) & ((1 << bbits) - 1)) << (16 - bbits);
|
|
|
|
while (bbits < 16) {
|
|
|
|
*blue |= *blue >> bbits;
|
|
|
|
bbits <<= 1;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
*blue = 0;
|
|
|
|
|
|
|
|
if (abits) {
|
|
|
|
*alpha =
|
|
|
|
((pixel >> ashift) & ((1 << abits) - 1)) << (16 - abits);
|
|
|
|
while (abits < 16) {
|
|
|
|
*alpha |= *alpha >> abits;
|
|
|
|
abits <<= 1;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
*alpha = 0xffff;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
|
|
|
uxa_get_color_for_pixmap (PixmapPtr pixmap,
|
|
|
|
CARD32 src_format,
|
|
|
|
CARD32 dst_format,
|
|
|
|
CARD32 *pixel)
|
|
|
|
{
|
|
|
|
CARD16 red, green, blue, alpha;
|
|
|
|
|
|
|
|
*pixel = uxa_get_pixmap_first_pixel(pixmap);
|
|
|
|
|
|
|
|
if (src_format != dst_format) {
|
|
|
|
if (!uxa_get_rgba_from_pixel(*pixel, &red, &green, &blue, &alpha,
|
|
|
|
src_format))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!uxa_get_pixel_from_rgba(pixel, red, green, blue, alpha,
|
|
|
|
dst_format))
|
|
|
|
return FALSE;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
return TRUE;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_try_driver_solid_fill(PicturePtr pSrc,
|
|
|
|
PicturePtr pDst,
|
|
|
|
INT16 xSrc,
|
|
|
|
INT16 ySrc,
|
|
|
|
INT16 xDst, INT16 yDst, CARD16 width, CARD16 height)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_screen_t *uxa_screen = uxa_get_screen(pDst->pDrawable->pScreen);
|
|
|
|
RegionRec region;
|
|
|
|
BoxPtr pbox;
|
|
|
|
int nbox;
|
|
|
|
int dst_off_x, dst_off_y;
|
|
|
|
PixmapPtr pSrcPix = NULL, pDstPix;
|
|
|
|
CARD32 pixel;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
pDstPix = uxa_get_drawable_pixmap(pDst->pDrawable);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
xDst += pDst->pDrawable->x;
|
|
|
|
yDst += pDst->pDrawable->y;
|
|
|
|
|
|
|
|
if (pSrc->pDrawable) {
|
|
|
|
pSrcPix = uxa_get_drawable_pixmap(pSrc->pDrawable);
|
|
|
|
xSrc += pSrc->pDrawable->x;
|
|
|
|
ySrc += pSrc->pDrawable->y;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (!miComputeCompositeRegion(®ion, pSrc, NULL, pDst,
|
|
|
|
xSrc, ySrc, 0, 0, xDst, yDst,
|
|
|
|
width, height))
|
|
|
|
return 1;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_get_drawable_deltas(pDst->pDrawable, pDstPix, &dst_off_x,
|
|
|
|
&dst_off_y);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
REGION_TRANSLATE(pScreen, ®ion, dst_off_x, dst_off_y);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (!uxa_pixmap_is_offscreen(pDstPix)) {
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen, ®ion);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pSrcPix) {
|
|
|
|
if (! uxa_get_color_for_pixmap (pSrcPix, pSrc->format, pDst->format, &pixel)) {
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen, ®ion);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SourcePict *source = pSrc->pSourcePict;
|
|
|
|
PictSolidFill *solid = &source->solidFill;
|
|
|
|
|
|
|
|
if (source == NULL || source->type != SourcePictTypeSolidFill) {
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen, ®ion);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixel = solid->color;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(*uxa_screen->info->prepare_solid)
|
|
|
|
(pDstPix, GXcopy, 0xffffffff, pixel)) {
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen, ®ion);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
nbox = REGION_NUM_RECTS(®ion);
|
|
|
|
pbox = REGION_RECTS(®ion);
|
|
|
|
|
|
|
|
while (nbox--) {
|
|
|
|
(*uxa_screen->info->solid) (pDstPix, pbox->x1, pbox->y1,
|
|
|
|
pbox->x2, pbox->y2);
|
|
|
|
pbox++;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*uxa_screen->info->done_solid) (pDstPix);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen, ®ion);
|
2010-05-10 16:32:28 -06:00
|
|
|
return 1;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
static PicturePtr
|
|
|
|
uxa_picture_for_pixman_format(ScreenPtr pScreen,
|
|
|
|
pixman_format_code_t format,
|
|
|
|
int width, int height)
|
|
|
|
{
|
|
|
|
PicturePtr pPicture;
|
|
|
|
PixmapPtr pPixmap;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if (format == PIXMAN_a1)
|
|
|
|
format = PIXMAN_a8;
|
|
|
|
|
|
|
|
/* fill alpha if unset */
|
|
|
|
if (PIXMAN_FORMAT_A(format) == 0)
|
|
|
|
format = PIXMAN_a8r8g8b8;
|
|
|
|
|
|
|
|
pPixmap = (*pScreen->CreatePixmap)(pScreen, width, height,
|
|
|
|
PIXMAN_FORMAT_DEPTH(format),
|
|
|
|
UXA_CREATE_PIXMAP_FOR_MAP);
|
|
|
|
if (!pPixmap)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pPicture = CreatePicture(0, &pPixmap->drawable,
|
|
|
|
PictureMatchFormat(pScreen,
|
|
|
|
PIXMAN_FORMAT_DEPTH(format),
|
|
|
|
format),
|
|
|
|
0, 0, serverClient, &error);
|
|
|
|
(*pScreen->DestroyPixmap) (pPixmap);
|
|
|
|
if (!pPicture)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ValidatePicture(pPicture);
|
|
|
|
|
|
|
|
return pPicture;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PicturePtr
|
|
|
|
uxa_picture_from_pixman_image(ScreenPtr pScreen,
|
|
|
|
pixman_image_t * image,
|
|
|
|
pixman_format_code_t format)
|
|
|
|
{
|
|
|
|
PicturePtr pPicture;
|
|
|
|
PixmapPtr pPixmap;
|
|
|
|
int width, height;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
width = pixman_image_get_width(image);
|
|
|
|
height = pixman_image_get_height(image);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
pPicture = uxa_picture_for_pixman_format(pScreen, format,
|
|
|
|
width, height);
|
|
|
|
if (!pPicture)
|
|
|
|
return 0;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
pPixmap = GetScratchPixmapHeader(pScreen, width, height,
|
|
|
|
PIXMAN_FORMAT_DEPTH(format),
|
|
|
|
PIXMAN_FORMAT_BPP(format),
|
|
|
|
pixman_image_get_stride(image),
|
|
|
|
pixman_image_get_data(image));
|
|
|
|
if (!pPixmap) {
|
|
|
|
FreePicture(pPicture, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (((pPicture->pDrawable->depth << 24) | pPicture->format) == format) {
|
|
|
|
GCPtr pGC;
|
|
|
|
|
|
|
|
pGC = GetScratchGC(PIXMAN_FORMAT_DEPTH(format), pScreen);
|
|
|
|
if (!pGC) {
|
|
|
|
FreeScratchPixmapHeader(pPixmap);
|
|
|
|
FreePicture(pPicture, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ValidateGC(pPicture->pDrawable, pGC);
|
|
|
|
|
|
|
|
(*pGC->ops->CopyArea) (&pPixmap->drawable, pPicture->pDrawable,
|
|
|
|
pGC, 0, 0, width, height, 0, 0);
|
|
|
|
|
|
|
|
FreeScratchGC(pGC);
|
|
|
|
} else {
|
|
|
|
PicturePtr pSrc;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
pSrc = CreatePicture(0, &pPixmap->drawable,
|
|
|
|
PictureMatchFormat(pScreen,
|
|
|
|
PIXMAN_FORMAT_DEPTH(format),
|
|
|
|
format),
|
|
|
|
0, 0, serverClient, &error);
|
|
|
|
if (!pSrc) {
|
|
|
|
FreeScratchPixmapHeader(pPixmap);
|
|
|
|
FreePicture(pPicture, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ValidatePicture(pSrc);
|
|
|
|
|
|
|
|
if (uxa_prepare_access(pPicture->pDrawable, UXA_ACCESS_RW)) {
|
|
|
|
fbComposite(PictOpSrc, pSrc, NULL, pPicture,
|
|
|
|
0, 0, 0, 0, 0, 0, width, height);
|
|
|
|
uxa_finish_access(pPicture->pDrawable);
|
|
|
|
}
|
|
|
|
|
|
|
|
FreePicture(pSrc, 0);
|
|
|
|
}
|
|
|
|
FreeScratchPixmapHeader(pPixmap);
|
|
|
|
|
|
|
|
return pPicture;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
static PicturePtr
|
|
|
|
uxa_create_solid(ScreenPtr screen, uint32_t color)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
PixmapPtr pixmap;
|
|
|
|
PicturePtr picture;
|
|
|
|
XID repeat = RepeatNormal;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
pixmap = (*screen->CreatePixmap)(screen, 1, 1, 32,
|
|
|
|
UXA_CREATE_PIXMAP_FOR_MAP);
|
|
|
|
if (!pixmap)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!uxa_prepare_access((DrawablePtr)pixmap, UXA_ACCESS_RW)) {
|
|
|
|
(*screen->DestroyPixmap)(pixmap);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*((uint32_t *)pixmap->devPrivate.ptr) = color;
|
|
|
|
uxa_finish_access((DrawablePtr)pixmap);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
picture = CreatePicture(0, &pixmap->drawable,
|
|
|
|
PictureMatchFormat(screen, 32, PICT_a8r8g8b8),
|
|
|
|
CPRepeat, &repeat, serverClient, &error);
|
|
|
|
(*screen->DestroyPixmap)(pixmap);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
return picture;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
static PicturePtr
|
|
|
|
uxa_acquire_solid(ScreenPtr screen, SourcePict *source)
|
|
|
|
{
|
|
|
|
uxa_screen_t *uxa_screen = uxa_get_screen(screen);
|
|
|
|
PictSolidFill *solid = &source->solidFill;
|
|
|
|
PicturePtr picture;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if ((solid->color >> 24) == 0) {
|
|
|
|
if (!uxa_screen->solid_clear) {
|
|
|
|
uxa_screen->solid_clear = uxa_create_solid(screen, 0);
|
|
|
|
if (!uxa_screen->solid_clear)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
picture = uxa_screen->solid_clear;
|
|
|
|
goto DONE;
|
|
|
|
} else if (solid->color == 0xff000000) {
|
|
|
|
if (!uxa_screen->solid_black) {
|
|
|
|
uxa_screen->solid_black = uxa_create_solid(screen, 0xff000000);
|
|
|
|
if (!uxa_screen->solid_black)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
picture = uxa_screen->solid_black;
|
|
|
|
goto DONE;
|
|
|
|
} else if (solid->color == 0xffffffff) {
|
|
|
|
if (!uxa_screen->solid_white) {
|
|
|
|
uxa_screen->solid_white = uxa_create_solid(screen, 0xffffffff);
|
|
|
|
if (!uxa_screen->solid_white)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
picture = uxa_screen->solid_white;
|
|
|
|
goto DONE;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
for (i = 0; i < uxa_screen->solid_cache_size; i++) {
|
|
|
|
if (uxa_screen->solid_cache[i].color == solid->color) {
|
|
|
|
picture = uxa_screen->solid_cache[i].picture;
|
|
|
|
goto DONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
picture = uxa_create_solid(screen, solid->color);
|
|
|
|
if (!picture)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (uxa_screen->solid_cache_size == UXA_NUM_SOLID_CACHE) {
|
|
|
|
i = rand() % UXA_NUM_SOLID_CACHE;
|
|
|
|
FreePicture(uxa_screen->solid_cache[i].picture, 0);
|
|
|
|
} else
|
|
|
|
uxa_screen->solid_cache_size++;
|
|
|
|
|
|
|
|
uxa_screen->solid_cache[i].picture = picture;
|
|
|
|
uxa_screen->solid_cache[i].color = solid->color;
|
|
|
|
|
|
|
|
DONE:
|
|
|
|
picture->refcnt++;
|
|
|
|
return picture;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
static PicturePtr
|
|
|
|
uxa_acquire_pattern(ScreenPtr pScreen,
|
|
|
|
PicturePtr pSrc,
|
|
|
|
pixman_format_code_t format,
|
|
|
|
INT16 x, INT16 y, CARD16 width, CARD16 height)
|
|
|
|
{
|
|
|
|
PicturePtr pDst;
|
|
|
|
|
|
|
|
if (pSrc->pSourcePict) {
|
|
|
|
SourcePict *source = pSrc->pSourcePict;
|
|
|
|
if (source->type == SourcePictTypeSolidFill)
|
|
|
|
return uxa_acquire_solid (pScreen, source);
|
|
|
|
}
|
|
|
|
|
|
|
|
pDst = uxa_picture_for_pixman_format(pScreen, format, width, height);
|
|
|
|
if (!pDst)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (uxa_prepare_access(pDst->pDrawable, UXA_ACCESS_RW)) {
|
|
|
|
fbComposite(PictOpSrc, pSrc, NULL, pDst,
|
|
|
|
x, y, 0, 0, 0, 0, width, height);
|
|
|
|
uxa_finish_access(pDst->pDrawable);
|
|
|
|
return pDst;
|
|
|
|
} else {
|
|
|
|
FreePicture(pDst, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static PicturePtr
|
|
|
|
uxa_acquire_source(ScreenPtr pScreen,
|
|
|
|
PicturePtr pPict,
|
|
|
|
INT16 x, INT16 y,
|
|
|
|
CARD16 width, CARD16 height, INT16 * out_x, INT16 * out_y)
|
|
|
|
{
|
|
|
|
if (pPict->pDrawable) {
|
|
|
|
*out_x = x + pPict->pDrawable->x;
|
|
|
|
*out_y = y + pPict->pDrawable->y;
|
|
|
|
return pPict;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out_x = 0;
|
|
|
|
*out_y = 0;
|
|
|
|
return uxa_acquire_pattern(pScreen, pPict,
|
|
|
|
PICT_a8r8g8b8, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PicturePtr
|
|
|
|
uxa_acquire_mask(ScreenPtr pScreen,
|
|
|
|
PicturePtr pPict,
|
|
|
|
INT16 x, INT16 y,
|
|
|
|
INT16 width, INT16 height, INT16 * out_x, INT16 * out_y)
|
|
|
|
{
|
|
|
|
if (pPict->pDrawable) {
|
|
|
|
*out_x = x + pPict->pDrawable->x;
|
|
|
|
*out_y = y + pPict->pDrawable->y;
|
|
|
|
return pPict;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out_x = 0;
|
|
|
|
*out_y = 0;
|
|
|
|
return uxa_acquire_pattern(pScreen, pPict,
|
|
|
|
PICT_a8, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
uxa_try_driver_composite_rects(CARD8 op,
|
|
|
|
PicturePtr pSrc,
|
|
|
|
PicturePtr pDst,
|
|
|
|
int nrect, uxa_composite_rect_t * rects)
|
|
|
|
{
|
|
|
|
uxa_screen_t *uxa_screen = uxa_get_screen(pDst->pDrawable->pScreen);
|
|
|
|
int src_off_x, src_off_y, dst_off_x, dst_off_y;
|
|
|
|
PixmapPtr pSrcPix, pDstPix;
|
|
|
|
|
|
|
|
if (!uxa_screen->info->prepare_composite || uxa_screen->swappedOut)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (uxa_screen->info->check_composite &&
|
|
|
|
!(*uxa_screen->info->check_composite) (op, pSrc, NULL, pDst)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pDstPix =
|
|
|
|
uxa_get_offscreen_pixmap(pDst->pDrawable, &dst_off_x, &dst_off_y);
|
|
|
|
if (!pDstPix)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pSrcPix =
|
|
|
|
uxa_get_offscreen_pixmap(pSrc->pDrawable, &src_off_x, &src_off_y);
|
|
|
|
if (!pSrcPix)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!(*uxa_screen->info->prepare_composite)
|
|
|
|
(op, pSrc, NULL, pDst, pSrcPix, NULL, pDstPix))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
while (nrect--) {
|
|
|
|
INT16 xDst = rects->xDst + pDst->pDrawable->x;
|
|
|
|
INT16 yDst = rects->yDst + pDst->pDrawable->y;
|
|
|
|
INT16 xSrc = rects->xSrc + pSrc->pDrawable->x;
|
|
|
|
INT16 ySrc = rects->ySrc + pSrc->pDrawable->y;
|
|
|
|
|
|
|
|
RegionRec region;
|
|
|
|
BoxPtr pbox;
|
|
|
|
int nbox;
|
|
|
|
|
|
|
|
if (!miComputeCompositeRegion(®ion, pSrc, NULL, pDst,
|
|
|
|
xSrc, ySrc, 0, 0, xDst, yDst,
|
|
|
|
rects->width, rects->height))
|
|
|
|
goto next_rect;
|
|
|
|
|
|
|
|
REGION_TRANSLATE(pScreen, ®ion, dst_off_x, dst_off_y);
|
|
|
|
|
|
|
|
nbox = REGION_NUM_RECTS(®ion);
|
|
|
|
pbox = REGION_RECTS(®ion);
|
|
|
|
|
|
|
|
xSrc = xSrc + src_off_x - xDst - dst_off_x;
|
|
|
|
ySrc = ySrc + src_off_y - yDst - dst_off_y;
|
|
|
|
|
|
|
|
while (nbox--) {
|
|
|
|
(*uxa_screen->info->composite) (pDstPix,
|
|
|
|
pbox->x1 + xSrc,
|
|
|
|
pbox->y1 + ySrc,
|
|
|
|
0, 0,
|
|
|
|
pbox->x1,
|
|
|
|
pbox->y1,
|
|
|
|
pbox->x2 - pbox->x1,
|
|
|
|
pbox->y2 - pbox->y1);
|
|
|
|
pbox++;
|
|
|
|
}
|
|
|
|
|
|
|
|
next_rect:
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen, ®ion);
|
|
|
|
|
|
|
|
rects++;
|
|
|
|
}
|
|
|
|
(*uxa_screen->info->done_composite) (pDstPix);
|
|
|
|
|
|
|
|
return 1;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy a number of rectangles from source to destination in a single
|
|
|
|
* operation. This is specialized for building a glyph mask: we don'y
|
|
|
|
* have a mask argument because we don't need it for that, and we
|
|
|
|
* don't have he special-case fallbacks found in uxa_composite() - if the
|
|
|
|
* driver can support it, we use the driver functionality, otherwise we
|
|
|
|
* fallback straight to software.
|
|
|
|
*/
|
|
|
|
void
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_composite_rects(CARD8 op,
|
|
|
|
PicturePtr pSrc,
|
|
|
|
PicturePtr pDst, int nrect, uxa_composite_rect_t * rects)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
int n;
|
|
|
|
uxa_composite_rect_t *r;
|
|
|
|
|
2009-06-25 14:16:43 -06:00
|
|
|
/************************************************************/
|
2010-05-10 16:32:28 -06:00
|
|
|
|
|
|
|
ValidatePicture(pSrc);
|
|
|
|
ValidatePicture(pDst);
|
|
|
|
|
|
|
|
if (uxa_try_driver_composite_rects(op, pSrc, pDst, nrect, rects) != 1) {
|
|
|
|
uxa_print_composite_fallback("uxa_composite_rects",
|
|
|
|
op, pSrc, NULL, pDst);
|
|
|
|
|
|
|
|
n = nrect;
|
|
|
|
r = rects;
|
|
|
|
while (n--) {
|
|
|
|
uxa_check_composite(op, pSrc, NULL, pDst,
|
|
|
|
r->xSrc, r->ySrc,
|
|
|
|
0, 0,
|
|
|
|
r->xDst, r->yDst,
|
|
|
|
r->width, r->height);
|
|
|
|
r++;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
2010-05-10 16:32:28 -06:00
|
|
|
|
2009-06-25 14:16:43 -06:00
|
|
|
/************************************************************/
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_try_driver_composite(CARD8 op,
|
|
|
|
PicturePtr pSrc,
|
|
|
|
PicturePtr pMask,
|
|
|
|
PicturePtr pDst,
|
|
|
|
INT16 xSrc,
|
|
|
|
INT16 ySrc,
|
|
|
|
INT16 xMask,
|
|
|
|
INT16 yMask,
|
|
|
|
INT16 xDst, INT16 yDst, CARD16 width, CARD16 height)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_screen_t *uxa_screen = uxa_get_screen(pDst->pDrawable->pScreen);
|
|
|
|
RegionRec region;
|
|
|
|
BoxPtr pbox;
|
|
|
|
int nbox;
|
|
|
|
int src_off_x, src_off_y, mask_off_x, mask_off_y, dst_off_x, dst_off_y;
|
|
|
|
PixmapPtr pSrcPix, pMaskPix = NULL, pDstPix;
|
|
|
|
PicturePtr localSrc, localMask = NULL;
|
|
|
|
|
|
|
|
xDst += pDst->pDrawable->x;
|
|
|
|
yDst += pDst->pDrawable->y;
|
|
|
|
|
|
|
|
localSrc = uxa_acquire_source(pDst->pDrawable->pScreen,
|
|
|
|
pSrc, xSrc, ySrc, width, height,
|
|
|
|
&xSrc, &ySrc);
|
|
|
|
if (!localSrc)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (pMask) {
|
|
|
|
localMask = uxa_acquire_mask(pDst->pDrawable->pScreen,
|
|
|
|
pMask, xMask, yMask, width, height,
|
|
|
|
&xMask, &yMask);
|
|
|
|
if (!localMask) {
|
|
|
|
if (localSrc != pSrc)
|
|
|
|
FreePicture(localSrc, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (uxa_screen->info->check_composite &&
|
|
|
|
!(*uxa_screen->info->check_composite) (op, localSrc, localMask,
|
|
|
|
pDst)) {
|
|
|
|
if (localSrc != pSrc)
|
|
|
|
FreePicture(localSrc, 0);
|
|
|
|
if (localMask && localMask != pMask)
|
|
|
|
FreePicture(localMask, 0);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
return -1;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (!miComputeCompositeRegion(®ion, localSrc, localMask, pDst,
|
|
|
|
xSrc, ySrc, xMask, yMask, xDst, yDst,
|
|
|
|
width, height)) {
|
|
|
|
if (localSrc != pSrc)
|
|
|
|
FreePicture(localSrc, 0);
|
|
|
|
if (localMask && localMask != pMask)
|
|
|
|
FreePicture(localMask, 0);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pDstPix =
|
|
|
|
uxa_get_offscreen_pixmap(pDst->pDrawable, &dst_off_x, &dst_off_y);
|
|
|
|
|
|
|
|
pSrcPix = uxa_get_offscreen_pixmap(localSrc->pDrawable,
|
|
|
|
&src_off_x, &src_off_y);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (localMask)
|
|
|
|
pMaskPix = uxa_get_offscreen_pixmap(localMask->pDrawable,
|
|
|
|
&mask_off_x, &mask_off_y);
|
|
|
|
|
|
|
|
if (!pDstPix || !pSrcPix || (localMask && !pMaskPix)) {
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen, ®ion);
|
|
|
|
|
|
|
|
if (localSrc != pSrc)
|
|
|
|
FreePicture(localSrc, 0);
|
|
|
|
if (localMask && localMask != pMask)
|
|
|
|
FreePicture(localMask, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
REGION_TRANSLATE(pScreen, ®ion, dst_off_x, dst_off_y);
|
|
|
|
|
|
|
|
if (!(*uxa_screen->info->prepare_composite)
|
|
|
|
(op, localSrc, localMask, pDst, pSrcPix, pMaskPix, pDstPix)) {
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen, ®ion);
|
|
|
|
|
|
|
|
if (localSrc != pSrc)
|
|
|
|
FreePicture(localSrc, 0);
|
|
|
|
if (localMask && localMask != pMask)
|
|
|
|
FreePicture(localMask, 0);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
nbox = REGION_NUM_RECTS(®ion);
|
|
|
|
pbox = REGION_RECTS(®ion);
|
|
|
|
|
|
|
|
if (pMask) {
|
|
|
|
xMask = xMask + mask_off_x - xDst - dst_off_x;
|
|
|
|
yMask = yMask + mask_off_y - yDst - dst_off_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
xSrc = xSrc + src_off_x - xDst - dst_off_x;
|
|
|
|
ySrc = ySrc + src_off_y - yDst - dst_off_y;
|
|
|
|
|
|
|
|
while (nbox--) {
|
|
|
|
(*uxa_screen->info->composite) (pDstPix,
|
|
|
|
pbox->x1 + xSrc,
|
|
|
|
pbox->y1 + ySrc,
|
|
|
|
pbox->x1 + xMask,
|
|
|
|
pbox->y1 + yMask,
|
|
|
|
pbox->x1,
|
|
|
|
pbox->y1,
|
|
|
|
pbox->x2 - pbox->x1,
|
|
|
|
pbox->y2 - pbox->y1);
|
|
|
|
pbox++;
|
|
|
|
}
|
|
|
|
(*uxa_screen->info->done_composite) (pDstPix);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen, ®ion);
|
2010-05-10 16:32:28 -06:00
|
|
|
|
|
|
|
if (localSrc != pSrc)
|
|
|
|
FreePicture(localSrc, 0);
|
|
|
|
if (localMask && localMask != pMask)
|
|
|
|
FreePicture(localMask, 0);
|
|
|
|
|
|
|
|
return 1;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* uxa_try_magic_two_pass_composite_helper implements PictOpOver using two passes of
|
|
|
|
* simpler operations PictOpOutReverse and PictOpAdd. Mainly used for component
|
|
|
|
* alpha and limited 1-tmu cards.
|
|
|
|
*
|
|
|
|
* From http://anholt.livejournal.com/32058.html:
|
|
|
|
*
|
|
|
|
* The trouble is that component-alpha rendering requires two different sources
|
|
|
|
* for blending: one for the source value to the blender, which is the
|
|
|
|
* per-channel multiplication of source and mask, and one for the source alpha
|
|
|
|
* for multiplying with the destination channels, which is the multiplication
|
|
|
|
* of the source channels by the mask alpha. So the equation for Over is:
|
|
|
|
*
|
|
|
|
* dst.A = src.A * mask.A + (1 - (src.A * mask.A)) * dst.A
|
|
|
|
* dst.R = src.R * mask.R + (1 - (src.A * mask.R)) * dst.R
|
|
|
|
* dst.G = src.G * mask.G + (1 - (src.A * mask.G)) * dst.G
|
|
|
|
* dst.B = src.B * mask.B + (1 - (src.A * mask.B)) * dst.B
|
|
|
|
*
|
|
|
|
* But we can do some simpler operations, right? How about PictOpOutReverse,
|
|
|
|
* which has a source factor of 0 and dest factor of (1 - source alpha). We
|
|
|
|
* can get the source alpha value (srca.X = src.A * mask.X) out of the texture
|
|
|
|
* blenders pretty easily. So we can do a component-alpha OutReverse, which
|
|
|
|
* gets us:
|
|
|
|
*
|
|
|
|
* dst.A = 0 + (1 - (src.A * mask.A)) * dst.A
|
|
|
|
* dst.R = 0 + (1 - (src.A * mask.R)) * dst.R
|
|
|
|
* dst.G = 0 + (1 - (src.A * mask.G)) * dst.G
|
|
|
|
* dst.B = 0 + (1 - (src.A * mask.B)) * dst.B
|
|
|
|
*
|
|
|
|
* OK. And if an op doesn't use the source alpha value for the destination
|
|
|
|
* factor, then we can do the channel multiplication in the texture blenders
|
|
|
|
* to get the source value, and ignore the source alpha that we wouldn't use.
|
|
|
|
* We've supported this in the Radeon driver for a long time. An example would
|
|
|
|
* be PictOpAdd, which does:
|
|
|
|
*
|
|
|
|
* dst.A = src.A * mask.A + dst.A
|
|
|
|
* dst.R = src.R * mask.R + dst.R
|
|
|
|
* dst.G = src.G * mask.G + dst.G
|
|
|
|
* dst.B = src.B * mask.B + dst.B
|
|
|
|
*
|
|
|
|
* Hey, this looks good! If we do a PictOpOutReverse and then a PictOpAdd right
|
|
|
|
* after it, we get:
|
|
|
|
*
|
|
|
|
* dst.A = src.A * mask.A + ((1 - (src.A * mask.A)) * dst.A)
|
|
|
|
* dst.R = src.R * mask.R + ((1 - (src.A * mask.R)) * dst.R)
|
|
|
|
* dst.G = src.G * mask.G + ((1 - (src.A * mask.G)) * dst.G)
|
|
|
|
* dst.B = src.B * mask.B + ((1 - (src.A * mask.B)) * dst.B)
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
uxa_try_magic_two_pass_composite_helper(CARD8 op,
|
2010-05-10 16:32:28 -06:00
|
|
|
PicturePtr pSrc,
|
|
|
|
PicturePtr pMask,
|
|
|
|
PicturePtr pDst,
|
|
|
|
INT16 xSrc,
|
|
|
|
INT16 ySrc,
|
|
|
|
INT16 xMask,
|
|
|
|
INT16 yMask,
|
|
|
|
INT16 xDst,
|
|
|
|
INT16 yDst, CARD16 width, CARD16 height)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_screen_t *uxa_screen = uxa_get_screen(pDst->pDrawable->pScreen);
|
|
|
|
|
|
|
|
assert(op == PictOpOver);
|
|
|
|
|
|
|
|
if (uxa_screen->info->check_composite &&
|
|
|
|
(!(*uxa_screen->info->check_composite) (PictOpOutReverse, pSrc,
|
|
|
|
pMask, pDst)
|
|
|
|
|| !(*uxa_screen->info->check_composite) (PictOpAdd, pSrc, pMask,
|
|
|
|
pDst))) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now, we think we should be able to accelerate this operation. First,
|
|
|
|
* composite the destination to be the destination times the source alpha
|
|
|
|
* factors.
|
|
|
|
*/
|
|
|
|
uxa_composite(PictOpOutReverse, pSrc, pMask, pDst, xSrc, ySrc, xMask,
|
|
|
|
yMask, xDst, yDst, width, height);
|
|
|
|
|
|
|
|
/* Then, add in the source value times the destination alpha factors (1.0).
|
|
|
|
*/
|
|
|
|
uxa_composite(PictOpAdd, pSrc, pMask, pDst, xSrc, ySrc, xMask, yMask,
|
|
|
|
xDst, yDst, width, height);
|
|
|
|
|
|
|
|
return 1;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
static int
|
|
|
|
compatible_formats (CARD8 op, PicturePtr dst, PicturePtr src)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
if (op == PictOpSrc) {
|
|
|
|
if (src->format == dst->format)
|
|
|
|
return 1;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (src->format == PICT_a8r8g8b8 && dst->format == PICT_x8r8g8b8)
|
|
|
|
return 1;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (src->format == PICT_a8b8g8r8 && dst->format == PICT_x8b8g8r8)
|
|
|
|
return 1;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
/* xrgb is promoted to argb during image upload... */
|
|
|
|
if (dst->format == PICT_a8r8g8b8 && src->format == PICT_x8r8g8b8)
|
|
|
|
return 1;
|
|
|
|
} else if (op == PictOpOver) {
|
|
|
|
if (src->alphaMap || dst->alphaMap)
|
|
|
|
return 0;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (src->format != dst->format)
|
|
|
|
return 0;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (src->format == PICT_x8r8g8b8 || src->format == PICT_x8b8g8r8)
|
|
|
|
return 1;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
return 0;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
static int
|
|
|
|
drawable_contains (DrawablePtr drawable, int x1, int y1, int x2, int y2)
|
|
|
|
{
|
|
|
|
if (x1 < 0 || y1 < 0)
|
|
|
|
return FALSE;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (x2 > drawable->width)
|
|
|
|
return FALSE;
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (y2 > drawable->height)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
uxa_composite(CARD8 op,
|
|
|
|
PicturePtr pSrc,
|
|
|
|
PicturePtr pMask,
|
|
|
|
PicturePtr pDst,
|
|
|
|
INT16 xSrc,
|
|
|
|
INT16 ySrc,
|
|
|
|
INT16 xMask,
|
|
|
|
INT16 yMask, INT16 xDst, INT16 yDst, CARD16 width, CARD16 height)
|
|
|
|
{
|
|
|
|
uxa_screen_t *uxa_screen = uxa_get_screen(pDst->pDrawable->pScreen);
|
|
|
|
int ret = -1;
|
|
|
|
Bool saveSrcRepeat = pSrc->repeat;
|
|
|
|
Bool saveMaskRepeat = pMask ? pMask->repeat : 0;
|
|
|
|
RegionRec region;
|
|
|
|
|
|
|
|
if (uxa_screen->swappedOut)
|
|
|
|
goto fallback;
|
|
|
|
|
|
|
|
/* Remove repeat in source if useless */
|
|
|
|
if (pSrc->pDrawable && pSrc->repeat && !pSrc->transform &&
|
|
|
|
(pSrc->pDrawable->width > 1 || pSrc->pDrawable->height > 1) &&
|
|
|
|
xSrc >= 0 && (xSrc + width) <= pSrc->pDrawable->width &&
|
|
|
|
ySrc >= 0 && (ySrc + height) <= pSrc->pDrawable->height)
|
|
|
|
pSrc->repeat = 0;
|
|
|
|
|
|
|
|
if (!pMask) {
|
|
|
|
if (pSrc->pDrawable == NULL) {
|
|
|
|
if (pSrc->pSourcePict) {
|
|
|
|
SourcePict *source = pSrc->pSourcePict;
|
|
|
|
if (source->type == SourcePictTypeSolidFill) {
|
|
|
|
ret = uxa_try_driver_solid_fill(pSrc, pDst,
|
|
|
|
xSrc, ySrc,
|
|
|
|
xDst, yDst,
|
|
|
|
width, height);
|
|
|
|
if (ret == 1)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (compatible_formats (op, pDst, pSrc)) {
|
|
|
|
if (pSrc->pDrawable->width == 1 &&
|
|
|
|
pSrc->pDrawable->height == 1 &&
|
|
|
|
pSrc->repeat) {
|
|
|
|
ret = uxa_try_driver_solid_fill(pSrc, pDst,
|
|
|
|
xSrc, ySrc,
|
|
|
|
xDst, yDst,
|
|
|
|
width, height);
|
|
|
|
if (ret == 1)
|
|
|
|
goto done;
|
|
|
|
} else if (!pSrc->repeat && !pSrc->transform &&
|
|
|
|
drawable_contains(pSrc->pDrawable, xSrc, ySrc, xSrc + width, ySrc + height)) {
|
|
|
|
xDst += pDst->pDrawable->x;
|
|
|
|
yDst += pDst->pDrawable->y;
|
|
|
|
xSrc += pSrc->pDrawable->x;
|
|
|
|
ySrc += pSrc->pDrawable->y;
|
|
|
|
|
|
|
|
if (!miComputeCompositeRegion
|
|
|
|
(®ion, pSrc, pMask, pDst, xSrc, ySrc,
|
|
|
|
xMask, yMask, xDst, yDst, width, height))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
uxa_copy_n_to_n(pSrc->pDrawable,
|
|
|
|
pDst->pDrawable, NULL,
|
|
|
|
REGION_RECTS(®ion),
|
|
|
|
REGION_NUM_RECTS(®ion),
|
|
|
|
xSrc - xDst, ySrc - yDst, FALSE,
|
|
|
|
FALSE, 0, NULL);
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen,
|
|
|
|
®ion);
|
|
|
|
goto done;
|
|
|
|
} else if (pSrc->pDrawable->type == DRAWABLE_PIXMAP &&
|
|
|
|
!pSrc->transform &&
|
|
|
|
pSrc->repeatType == RepeatNormal) {
|
|
|
|
DDXPointRec patOrg;
|
|
|
|
|
|
|
|
/* Let's see if the driver can do the repeat
|
|
|
|
* in one go
|
|
|
|
*/
|
|
|
|
if (uxa_screen->info->prepare_composite
|
|
|
|
&& !pSrc->alphaMap && !pDst->alphaMap) {
|
|
|
|
ret = uxa_try_driver_composite(op, pSrc,
|
|
|
|
pMask, pDst,
|
|
|
|
xSrc, ySrc,
|
|
|
|
xMask, yMask,
|
|
|
|
xDst, yDst,
|
|
|
|
width, height);
|
|
|
|
if (ret == 1)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now see if we can use
|
|
|
|
* uxa_fill_region_tiled()
|
|
|
|
*/
|
|
|
|
xDst += pDst->pDrawable->x;
|
|
|
|
yDst += pDst->pDrawable->y;
|
|
|
|
xSrc += pSrc->pDrawable->x;
|
|
|
|
ySrc += pSrc->pDrawable->y;
|
|
|
|
|
|
|
|
if (!miComputeCompositeRegion
|
|
|
|
(®ion, pSrc, pMask, pDst, xSrc, ySrc,
|
|
|
|
xMask, yMask, xDst, yDst, width, height))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
/* pattern origin is the point in the
|
|
|
|
* destination drawable
|
|
|
|
* corresponding to (0,0) in the source */
|
|
|
|
patOrg.x = xDst - xSrc;
|
|
|
|
patOrg.y = yDst - ySrc;
|
|
|
|
|
|
|
|
ret = uxa_fill_region_tiled(pDst->pDrawable,
|
|
|
|
®ion,
|
|
|
|
(PixmapPtr) pSrc->
|
|
|
|
pDrawable, &patOrg,
|
|
|
|
FB_ALLONES, GXcopy);
|
|
|
|
|
|
|
|
REGION_UNINIT(pDst->pDrawable->pScreen,
|
|
|
|
®ion);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
/* Remove repeat in mask if useless */
|
|
|
|
if (pMask && pMask->repeat && !pMask->transform && pMask->pDrawable &&
|
|
|
|
(pMask->pDrawable->width > 1 || pMask->pDrawable->height > 1) &&
|
|
|
|
xMask >= 0 && (xMask + width) <= pMask->pDrawable->width &&
|
|
|
|
yMask >= 0 && (yMask + height) <= pMask->pDrawable->height)
|
|
|
|
pMask->repeat = 0;
|
|
|
|
|
|
|
|
if (uxa_screen->info->prepare_composite &&
|
|
|
|
!pSrc->alphaMap && (!pMask || !pMask->alphaMap) && !pDst->alphaMap)
|
|
|
|
{
|
|
|
|
Bool isSrcSolid;
|
|
|
|
|
|
|
|
ret =
|
|
|
|
uxa_try_driver_composite(op, pSrc, pMask, pDst, xSrc, ySrc,
|
|
|
|
xMask, yMask, xDst, yDst, width,
|
|
|
|
height);
|
|
|
|
if (ret == 1)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
/* For generic masks and solid src pictures, mach64 can do
|
|
|
|
* Over in two passes, similar to the component-alpha case.
|
|
|
|
*/
|
|
|
|
isSrcSolid = pSrc->pDrawable &&
|
|
|
|
pSrc->pDrawable->width == 1 &&
|
|
|
|
pSrc->pDrawable->height == 1 && pSrc->repeat;
|
|
|
|
|
|
|
|
/* If we couldn't do the Composite in a single pass, and it
|
|
|
|
* was a component-alpha Over, see if we can do it in two
|
|
|
|
* passes with an OutReverse and then an Add.
|
|
|
|
*/
|
|
|
|
if (ret == -1 && op == PictOpOver && pMask &&
|
|
|
|
(pMask->componentAlpha || isSrcSolid)) {
|
|
|
|
ret =
|
|
|
|
uxa_try_magic_two_pass_composite_helper(op, pSrc,
|
|
|
|
pMask, pDst,
|
|
|
|
xSrc, ySrc,
|
|
|
|
xMask,
|
|
|
|
yMask, xDst,
|
|
|
|
yDst, width,
|
|
|
|
height);
|
|
|
|
if (ret == 1)
|
|
|
|
goto done;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fallback:
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_print_composite_fallback("uxa_composite",
|
|
|
|
op, pSrc, pMask, pDst);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_check_composite(op, pSrc, pMask, pDst, xSrc, ySrc,
|
|
|
|
xMask, yMask, xDst, yDst, width, height);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
|
|
|
done:
|
2010-05-10 16:32:28 -06:00
|
|
|
pSrc->repeat = saveSrcRepeat;
|
|
|
|
if (pMask)
|
|
|
|
pMask->repeat = saveMaskRepeat;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Same as miCreateAlphaPicture, except it uses uxa_check_poly_fill_rect instead
|
|
|
|
* of PolyFillRect to initialize the pixmap after creating it, to prevent
|
|
|
|
* the pixmap from being migrated.
|
|
|
|
*
|
|
|
|
* See the comments about uxa_trapezoids and uxa_triangles.
|
|
|
|
*/
|
|
|
|
static PicturePtr
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_create_alpha_picture(ScreenPtr pScreen,
|
|
|
|
PicturePtr pDst,
|
|
|
|
PictFormatPtr pPictFormat, CARD16 width, CARD16 height)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
PixmapPtr pPixmap;
|
|
|
|
PicturePtr pPicture;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if (width > 32767 || height > 32767)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!pPictFormat) {
|
|
|
|
if (pDst->polyEdge == PolyEdgeSharp)
|
|
|
|
pPictFormat = PictureMatchFormat(pScreen, 1, PICT_a1);
|
|
|
|
else
|
|
|
|
pPictFormat = PictureMatchFormat(pScreen, 8, PICT_a8);
|
|
|
|
if (!pPictFormat)
|
|
|
|
return 0;
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
pPixmap = (*pScreen->CreatePixmap) (pScreen, width, height,
|
|
|
|
pPictFormat->depth,
|
|
|
|
UXA_CREATE_PIXMAP_FOR_MAP);
|
|
|
|
if (!pPixmap)
|
|
|
|
return 0;
|
|
|
|
pPicture = CreatePicture(0, &pPixmap->drawable, pPictFormat,
|
|
|
|
0, 0, serverClient, &error);
|
2009-06-25 14:16:43 -06:00
|
|
|
(*pScreen->DestroyPixmap) (pPixmap);
|
2010-05-10 16:32:28 -06:00
|
|
|
return pPicture;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* uxa_trapezoids is essentially a copy of miTrapezoids that uses
|
|
|
|
* uxa_create_alpha_picture instead of miCreateAlphaPicture.
|
|
|
|
*
|
|
|
|
* The problem with miCreateAlphaPicture is that it calls PolyFillRect
|
|
|
|
* to initialize the contents after creating the pixmap, which
|
|
|
|
* causes the pixmap to be moved in for acceleration. The subsequent
|
|
|
|
* call to RasterizeTrapezoid won't be accelerated however, which
|
|
|
|
* forces the pixmap to be moved out again.
|
|
|
|
*
|
2010-05-10 16:32:28 -06:00
|
|
|
* uxa_create_alpha_picture avoids this roundtrip by using
|
|
|
|
* uxa_check_poly_fill_rect to initialize the contents.
|
2009-06-25 14:16:43 -06:00
|
|
|
*/
|
|
|
|
void
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_trapezoids(CARD8 op, PicturePtr pSrc, PicturePtr pDst,
|
|
|
|
PictFormatPtr maskFormat, INT16 xSrc, INT16 ySrc,
|
|
|
|
int ntrap, xTrapezoid * traps)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
ScreenPtr pScreen = pDst->pDrawable->pScreen;
|
|
|
|
PictureScreenPtr ps = GetPictureScreen(pScreen);
|
|
|
|
BoxRec bounds;
|
|
|
|
Bool direct = op == PictOpAdd && miIsSolidAlpha(pSrc);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (maskFormat || direct) {
|
|
|
|
miTrapezoidBounds(ntrap, traps, &bounds);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
|
|
|
|
return;
|
2009-07-18 09:02:51 -06:00
|
|
|
}
|
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
/*
|
|
|
|
* Check for solid alpha add
|
|
|
|
*/
|
|
|
|
if (direct) {
|
|
|
|
DrawablePtr pDraw = pDst->pDrawable;
|
|
|
|
PixmapPtr pixmap = uxa_get_drawable_pixmap(pDraw);
|
|
|
|
int xoff, yoff;
|
2009-07-18 09:02:51 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_get_drawable_deltas(pDraw, pixmap, &xoff, &yoff);
|
2009-06-25 14:16:43 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
xoff += pDraw->x;
|
|
|
|
yoff += pDraw->y;
|
2009-07-18 09:02:51 -06:00
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
if (uxa_prepare_access(pDraw, UXA_ACCESS_RW)) {
|
|
|
|
for (; ntrap; ntrap--, traps++)
|
|
|
|
(*ps->RasterizeTrapezoid) (pDst, traps, 0, 0);
|
|
|
|
uxa_finish_access(pDraw);
|
|
|
|
}
|
|
|
|
} else if (maskFormat) {
|
|
|
|
PicturePtr pPicture;
|
|
|
|
INT16 xDst, yDst;
|
|
|
|
INT16 xRel, yRel;
|
|
|
|
int width, height;
|
|
|
|
pixman_image_t *image;
|
|
|
|
pixman_format_code_t format;
|
|
|
|
|
|
|
|
xDst = traps[0].left.p1.x >> 16;
|
|
|
|
yDst = traps[0].left.p1.y >> 16;
|
|
|
|
|
|
|
|
width = bounds.x2 - bounds.x1;
|
|
|
|
height = bounds.y2 - bounds.y1;
|
|
|
|
|
|
|
|
format = maskFormat->format |
|
|
|
|
(BitsPerPixel(maskFormat->depth) << 24);
|
|
|
|
image =
|
|
|
|
pixman_image_create_bits(format, width, height, NULL, 0);
|
|
|
|
if (!image)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (; ntrap; ntrap--, traps++)
|
|
|
|
pixman_rasterize_trapezoid(image,
|
|
|
|
(pixman_trapezoid_t *) traps,
|
|
|
|
-bounds.x1, -bounds.y1);
|
|
|
|
|
|
|
|
pPicture =
|
|
|
|
uxa_picture_from_pixman_image(pScreen, image, format);
|
|
|
|
pixman_image_unref(image);
|
|
|
|
if (!pPicture)
|
|
|
|
return;
|
|
|
|
|
|
|
|
xRel = bounds.x1 + xSrc - xDst;
|
|
|
|
yRel = bounds.y1 + ySrc - yDst;
|
|
|
|
CompositePicture(op, pSrc, pPicture, pDst,
|
|
|
|
xRel, yRel,
|
|
|
|
0, 0,
|
|
|
|
bounds.x1, bounds.y1,
|
|
|
|
width, height);
|
|
|
|
FreePicture(pPicture, 0);
|
|
|
|
} else {
|
|
|
|
if (pDst->polyEdge == PolyEdgeSharp)
|
|
|
|
maskFormat = PictureMatchFormat(pScreen, 1, PICT_a1);
|
|
|
|
else
|
|
|
|
maskFormat = PictureMatchFormat(pScreen, 8, PICT_a8);
|
|
|
|
for (; ntrap; ntrap--, traps++)
|
|
|
|
uxa_trapezoids(op, pSrc, pDst, maskFormat, xSrc, ySrc,
|
|
|
|
1, traps);
|
|
|
|
}
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* uxa_triangles is essentially a copy of miTriangles that uses
|
|
|
|
* uxa_create_alpha_picture instead of miCreateAlphaPicture.
|
|
|
|
*
|
|
|
|
* The problem with miCreateAlphaPicture is that it calls PolyFillRect
|
|
|
|
* to initialize the contents after creating the pixmap, which
|
|
|
|
* causes the pixmap to be moved in for acceleration. The subsequent
|
|
|
|
* call to AddTriangles won't be accelerated however, which forces the pixmap
|
|
|
|
* to be moved out again.
|
|
|
|
*
|
2010-05-10 16:32:28 -06:00
|
|
|
* uxa_create_alpha_picture avoids this roundtrip by using
|
|
|
|
* uxa_check_poly_fill_rect to initialize the contents.
|
2009-06-25 14:16:43 -06:00
|
|
|
*/
|
|
|
|
void
|
2010-05-10 16:32:28 -06:00
|
|
|
uxa_triangles(CARD8 op, PicturePtr pSrc, PicturePtr pDst,
|
2009-06-25 14:16:43 -06:00
|
|
|
PictFormatPtr maskFormat, INT16 xSrc, INT16 ySrc,
|
2010-05-10 16:32:28 -06:00
|
|
|
int ntri, xTriangle * tris)
|
2009-06-25 14:16:43 -06:00
|
|
|
{
|
2010-05-10 16:32:28 -06:00
|
|
|
ScreenPtr pScreen = pDst->pDrawable->pScreen;
|
|
|
|
PictureScreenPtr ps = GetPictureScreen(pScreen);
|
|
|
|
BoxRec bounds;
|
|
|
|
Bool direct = op == PictOpAdd && miIsSolidAlpha(pSrc);
|
|
|
|
|
|
|
|
if (maskFormat || direct) {
|
|
|
|
miTriangleBounds(ntri, tris, &bounds);
|
|
|
|
|
|
|
|
if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
|
|
|
|
return;
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
|
2010-05-10 16:32:28 -06:00
|
|
|
/*
|
|
|
|
* Check for solid alpha add
|
|
|
|
*/
|
|
|
|
if (direct) {
|
|
|
|
DrawablePtr pDraw = pDst->pDrawable;
|
|
|
|
if (uxa_prepare_access(pDraw, UXA_ACCESS_RW)) {
|
|
|
|
(*ps->AddTriangles) (pDst, 0, 0, ntri, tris);
|
|
|
|
uxa_finish_access(pDraw);
|
|
|
|
}
|
|
|
|
} else if (maskFormat) {
|
|
|
|
PicturePtr pPicture;
|
|
|
|
INT16 xDst, yDst;
|
|
|
|
INT16 xRel, yRel;
|
|
|
|
int width = bounds.x2 - bounds.x1;
|
|
|
|
int height = bounds.y2 - bounds.y1;
|
|
|
|
GCPtr pGC;
|
|
|
|
xRectangle rect;
|
|
|
|
|
|
|
|
xDst = tris[0].p1.x >> 16;
|
|
|
|
yDst = tris[0].p1.y >> 16;
|
|
|
|
|
|
|
|
pPicture = uxa_create_alpha_picture(pScreen, pDst, maskFormat,
|
|
|
|
width, height);
|
|
|
|
if (!pPicture)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Clear the alpha picture to 0. */
|
|
|
|
pGC = GetScratchGC(pPicture->pDrawable->depth, pScreen);
|
|
|
|
if (!pGC) {
|
|
|
|
FreePicture(pPicture, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ValidateGC(pPicture->pDrawable, pGC);
|
|
|
|
rect.x = 0;
|
|
|
|
rect.y = 0;
|
|
|
|
rect.width = width;
|
|
|
|
rect.height = height;
|
|
|
|
uxa_check_poly_fill_rect(pPicture->pDrawable, pGC, 1, &rect);
|
|
|
|
FreeScratchGC(pGC);
|
|
|
|
|
|
|
|
if (uxa_prepare_access(pPicture->pDrawable, UXA_ACCESS_RW)) {
|
|
|
|
(*ps->AddTriangles) (pPicture, -bounds.x1, -bounds.y1,
|
|
|
|
ntri, tris);
|
|
|
|
uxa_finish_access(pPicture->pDrawable);
|
|
|
|
}
|
|
|
|
|
|
|
|
xRel = bounds.x1 + xSrc - xDst;
|
|
|
|
yRel = bounds.y1 + ySrc - yDst;
|
|
|
|
CompositePicture(op, pSrc, pPicture, pDst,
|
|
|
|
xRel, yRel, 0, 0, bounds.x1, bounds.y1,
|
|
|
|
bounds.x2 - bounds.x1, bounds.y2 - bounds.y1);
|
|
|
|
FreePicture(pPicture, 0);
|
|
|
|
} else {
|
|
|
|
if (pDst->polyEdge == PolyEdgeSharp)
|
|
|
|
maskFormat = PictureMatchFormat(pScreen, 1, PICT_a1);
|
|
|
|
else
|
|
|
|
maskFormat = PictureMatchFormat(pScreen, 8, PICT_a8);
|
|
|
|
|
|
|
|
for (; ntri; ntri--, tris++)
|
|
|
|
uxa_triangles(op, pSrc, pDst, maskFormat, xSrc, ySrc, 1,
|
|
|
|
tris);
|
2009-06-25 14:16:43 -06:00
|
|
|
}
|
|
|
|
}
|