afbbitblt.c 14.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
/* $XFree86: xc/programs/Xserver/afb/afbbitblt.c,v 3.5tsi Exp $ */
/* Combined Purdue/PurduePlus patches, level 2.0, 1/17/89 */
/***********************************************************

Copyright (c) 1987  X Consortium

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

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
X CONSORTIUM 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 X Consortium 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 X Consortium.


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.

******************************************************************/
/* $XConsortium: afbbitblt.c,v 5.25 94/04/17 20:28:16 dpw Exp $ */

#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif

#include <X11/X.h>
#include <X11/Xprotostr.h>

#include "regionstr.h"
#include "gcstruct.h"
#include "windowstr.h"
#include "pixmapstr.h"
#include "scrnintstr.h"

#include "mi.h"

#include "afb.h"
#include "maskbits.h"


static unsigned char afbRropsOS[AFB_MAX_DEPTH];

/* CopyArea and CopyPlane for a monchrome frame buffer


	clip the source rectangle to the source's available bits.  (this
avoids copying unnecessary pieces that will just get exposed anyway.)
this becomes the new shape of the destination.
	clip the destination region to the composite clip in the
GC.  this requires translating the destination region to (dstx, dsty).
	build a list of source points, one for each rectangle in the
destination.  this is a simple translation.
	go do the multiple rectangle copies
	do graphics exposures
*/
/** Optimized for drawing pixmaps into windows, especially when drawing into
 ** unobscured windows.  Calls to the general-purpose region code were
 ** replaced with rectangle-to-rectangle clipping comparisions.  This is
 ** possible, since the pixmap is a single rectangle.  In an unobscured
 ** window, the destination clip is also a single rectangle, and region
 ** code can be avoided entirely.  This is a big savings, since the region
 ** code uses XAlloc() and makes many function calls.
 **
 ** In addition, if source is a pixmap, there is no need to call the
 ** expensive miHandleExposures() routine.  Instead, we simply return NULL.
 **
 ** Previously, drawing a pixmap into an unobscured window executed at least
 ** 8 XAlloc()'s, 30 function calls, and hundreds of lines of code.
 **
 ** Now, the same operation requires no XAlloc()'s, no region function calls,
 ** and much less overhead.  Nice for drawing lots of small pixmaps.
 */

void
afbDoBitblt(pSrc, pDst, alu, prgnDst, pptSrc, planemask)
	DrawablePtr pSrc, pDst;
	int alu;
	RegionPtr prgnDst;
	DDXPointPtr pptSrc;
	unsigned long planemask;
{
	switch (alu) {
		case GXcopy:
			afbDoBitbltCopy(pSrc, pDst, alu, prgnDst, pptSrc, planemask);
			break;
		case GXxor:
			afbDoBitbltXor(pSrc, pDst, alu, prgnDst, pptSrc, planemask);
			break;
		case GXcopyInverted:
			afbDoBitbltCopyInverted(pSrc, pDst, alu, prgnDst, pptSrc, planemask);
			break;
		case GXor:
			afbDoBitbltOr(pSrc, pDst, alu, prgnDst, pptSrc, planemask);
			break;
		default:
			afbDoBitbltGeneral(pSrc, pDst, alu, prgnDst, pptSrc, planemask);
			break;
	}
}

RegionPtr
afbCopyArea(pSrcDrawable, pDstDrawable, pGC, srcx, srcy, width, height,
				 dstx, dsty)
	DrawablePtr pSrcDrawable;
	DrawablePtr pDstDrawable;
	GC *pGC;
	int srcx, srcy;
	int width, height;
	int dstx, dsty;
{
	void (*doBitBlt)();

	switch (pGC->alu) {
		case GXcopy:
			doBitBlt = afbDoBitbltCopy;
			break;
		case GXxor:
			doBitBlt = afbDoBitbltXor;
			break;
		case GXcopyInverted:
			doBitBlt = afbDoBitbltCopyInverted;
			break;
		case GXor:
			doBitBlt = afbDoBitbltOr;
			break;
		default:
			doBitBlt = afbDoBitbltGeneral;
			break;
	}

	return(afbBitBlt(pSrcDrawable, pDstDrawable, pGC, srcx, srcy,
			 width, height, dstx, dsty, doBitBlt, pGC->planemask));
}

RegionPtr
afbBitBlt(pSrcDrawable, pDstDrawable, pGC, srcx, srcy, width, height,
			  dstx, dsty, doBitBlt, planemask)
	register DrawablePtr pSrcDrawable;
	register DrawablePtr pDstDrawable;
	register GC *pGC;
	int srcx, srcy;
	int width, height;
	int dstx, dsty;
	void (*doBitBlt)();
	unsigned long planemask;
{
	RegionPtr prgnSrcClip = NULL;		/* may be a new region, or just a copy */
	Bool freeSrcClip = FALSE;

	RegionPtr prgnExposed;
	RegionRec rgnDst;
	DDXPointPtr pptSrc;
	register DDXPointPtr ppt;
	register BoxPtr pbox;
	int i;
	register int dx;
	register int dy;
	xRectangle origSource;
	DDXPointRec origDest;
	int numRects;
	BoxRec fastBox;
	int fastClip = 0;					/* for fast clipping with pixmap source */
	int fastExpose = 0;				/* for fast exposures with pixmap source */

	origSource.x = srcx;
	origSource.y = srcy;
	origSource.width = width;
	origSource.height = height;
	origDest.x = dstx;
	origDest.y = dsty;

	if ((pSrcDrawable != pDstDrawable) && pSrcDrawable->pScreen->SourceValidate)
		(*pSrcDrawable->pScreen->SourceValidate)(pSrcDrawable, srcx, srcy, width,
															  height);

	srcx += pSrcDrawable->x;
	srcy += pSrcDrawable->y;

	/* clip the source */

	if (pSrcDrawable->type == DRAWABLE_PIXMAP)
		if ((pSrcDrawable == pDstDrawable) && (pGC->clientClipType == CT_NONE))
			prgnSrcClip = pGC->pCompositeClip;
		else
			fastClip = 1;
	else if (pGC->subWindowMode == IncludeInferiors)
		if (!((WindowPtr)pSrcDrawable)->parent)
			/*
			 * special case bitblt from root window in
			 * IncludeInferiors mode; just like from a pixmap
			 */
			fastClip = 1;
		else if ((pSrcDrawable == pDstDrawable) && (pGC->clientClipType == CT_NONE))
			prgnSrcClip = pGC->pCompositeClip;
		else {
			prgnSrcClip = NotClippedByChildren((WindowPtr)pSrcDrawable);
			freeSrcClip = TRUE;
		}
	else
		prgnSrcClip = &((WindowPtr)pSrcDrawable)->clipList;

	fastBox.x1 = srcx;
	fastBox.y1 = srcy;
	fastBox.x2 = srcx + width;
	fastBox.y2 = srcy + height;

	/* Don't create a source region if we are doing a fast clip */
	if (fastClip) {
		fastExpose = 1;
		/*
		 * clip the source; if regions extend beyond the source size,
		 * make sure exposure events get sent
		 */
		if (fastBox.x1 < pSrcDrawable->x) {
			fastBox.x1 = pSrcDrawable->x;
			fastExpose = 0;
		}
		if (fastBox.y1 < pSrcDrawable->y) {
			fastBox.y1 = pSrcDrawable->y;
			fastExpose = 0;
		}
		if (fastBox.x2 > pSrcDrawable->x + (int)pSrcDrawable->width) {
			fastBox.x2 = pSrcDrawable->x + (int)pSrcDrawable->width;
			fastExpose = 0;
		}
		if (fastBox.y2 > pSrcDrawable->y + (int)pSrcDrawable->height) {
			fastBox.y2 = pSrcDrawable->y + (int)pSrcDrawable->height;
			fastExpose = 0;
		}
	} else {
		REGION_INIT(pGC->pScreen, &rgnDst, &fastBox, 1);
		REGION_INTERSECT(pGC->pScreen, &rgnDst, &rgnDst, prgnSrcClip);
	}

	dstx += pDstDrawable->x;
	dsty += pDstDrawable->y;

	if (pDstDrawable->type == DRAWABLE_WINDOW)
		if (!((WindowPtr)pDstDrawable)->realized) {
			if (!fastClip)
				REGION_UNINIT(pGC->pScreen, &rgnDst);
			if (freeSrcClip)
				REGION_DESTROY(pGC->pScreen, prgnSrcClip);
			return NULL;
		}

	dx = srcx - dstx;
	dy = srcy - dsty;

	/* Translate and clip the dst to the destination composite clip */
	if (fastClip) {
		RegionPtr cclip;

		/* Translate the region directly */
		fastBox.x1 -= dx;
		fastBox.x2 -= dx;
		fastBox.y1 -= dy;
		fastBox.y2 -= dy;

		/* If the destination composite clip is one rectangle we can
		   do the clip directly.  Otherwise we have to create a full
		   blown region and call intersect */
		cclip = pGC->pCompositeClip;
		if (REGION_NUM_RECTS(cclip) == 1) {
			BoxPtr pBox = REGION_RECTS(cclip);

			if (fastBox.x1 < pBox->x1)
				fastBox.x1 = pBox->x1;
			if (fastBox.x2 > pBox->x2)
				fastBox.x2 = pBox->x2;
			if (fastBox.y1 < pBox->y1)
				fastBox.y1 = pBox->y1;
			if (fastBox.y2 > pBox->y2)
				fastBox.y2 = pBox->y2;

			/* Check to see if the region is empty */
			if (fastBox.x1 >= fastBox.x2 || fastBox.y1 >= fastBox.y2) {
				REGION_NULL(pGC->pScreen, &rgnDst);
			} else {
				REGION_INIT(pGC->pScreen, &rgnDst, &fastBox, 1);
			}
		} else {
			/* We must turn off fastClip now, since we must create
			   a full blown region.  It is intersected with the
			   composite clip below. */
			fastClip = 0;
			REGION_INIT(pGC->pScreen, &rgnDst, &fastBox,1);
		}
	} else
		REGION_TRANSLATE(pGC->pScreen, &rgnDst, -dx, -dy);

	if (!fastClip) {
		REGION_INTERSECT(pGC->pScreen, &rgnDst, &rgnDst,
		 pGC->pCompositeClip);
	}

	/* Do bit blitting */
	numRects = REGION_NUM_RECTS(&rgnDst);
	if (numRects && width && height) {
		if(!(pptSrc = (DDXPointPtr)ALLOCATE_LOCAL(numRects *
												  sizeof(DDXPointRec)))) {
			REGION_UNINIT(pGC->pScreen, &rgnDst);
			if (freeSrcClip)
				REGION_DESTROY(pGC->pScreen, prgnSrcClip);
			return NULL;
		}
		pbox = REGION_RECTS(&rgnDst);
		ppt = pptSrc;
		for (i = numRects; --i >= 0; pbox++, ppt++) {
			ppt->x = pbox->x1 + dx;
			ppt->y = pbox->y1 + dy;
		}

		(*doBitBlt)(pSrcDrawable, pDstDrawable, pGC->alu, &rgnDst, pptSrc,
					 planemask);

		DEALLOCATE_LOCAL(pptSrc);
	}

	prgnExposed = NULL;
	if (pGC->fExpose)  {
		/* Pixmap sources generate a NoExposed (we return NULL to do this) */
		if (!fastExpose)
			prgnExposed = miHandleExposures(pSrcDrawable, pDstDrawable, pGC,
													  origSource.x, origSource.y,
													  (int)origSource.width,
													  (int)origSource.height, origDest.x,
													  origDest.y, (unsigned long)0);
	}
	REGION_UNINIT(pGC->pScreen, &rgnDst);
	if (freeSrcClip)
		REGION_DESTROY(pGC->pScreen, prgnSrcClip);
	return prgnExposed;
}

RegionPtr
afbCopyPlane(pSrcDrawable, pDstDrawable, pGC, srcx, srcy, width, height,
			 dstx, dsty, plane)
DrawablePtr pSrcDrawable, pDstDrawable;
register GC *pGC;
int srcx, srcy;
int width, height;
int dstx, dsty;
unsigned long plane;
{
	int alu;
	RegionPtr		prgnExposed = NULL;
	unsigned long old_planemask;

	if (pDstDrawable->depth == 1) {
		old_planemask = pGC->planemask;
		pGC->planemask = plane;
		if ((pGC->fgPixel & 1) == 1 && (pGC->bgPixel & 1) == 0) {
			prgnExposed = (*pGC->ops->CopyArea)(pSrcDrawable, pDstDrawable,
							 pGC, srcx, srcy, width, height, dstx, dsty);
		} else if ((pGC->fgPixel & 1) == (pGC->bgPixel & 1)) {
			unsigned char rop;

			afbReduceRop(pGC->alu, pGC->fgPixel, 1, 1, &rop);
			alu = pGC->alu;
			pGC->alu = rop;
			prgnExposed = (*pGC->ops->CopyArea)(pSrcDrawable, pDstDrawable, pGC,
															srcx, srcy, width, height, dstx,
															dsty);
			pGC->alu = alu;
		} else { /* need to invert the src */
			alu = pGC->alu;
			pGC->alu = afbInverseAlu[alu];
			prgnExposed = (*pGC->ops->CopyArea)(pSrcDrawable, pDstDrawable, pGC,
															srcx, srcy, width, height, dstx,
															dsty);
			pGC->alu = alu;
		}
		pGC->planemask = old_planemask;
	} else {
		int free_pixmap = FALSE;
		PixmapPtr pBitmap = (PixmapPtr)pSrcDrawable;
		ScreenPtr pScreen = pSrcDrawable->pScreen;
		GCPtr pGC1 = NULL;

		if (pSrcDrawable == pDstDrawable ||
			pSrcDrawable->type == DRAWABLE_WINDOW || pSrcDrawable->depth != 1) {
			/* Copy a plane from source drawable to a tmp 1-bit deep pixmap */
			/* XXX: Range check width and height */
			pBitmap = (*pScreen->CreatePixmap)(pScreen, width, height, 1);

			if (!pBitmap)
				return(NULL);
			pGC1 = GetScratchGC(1, pScreen);
			if (!pGC1) {
				(*pScreen->DestroyPixmap)(pBitmap);
				return(NULL);
			}
			ValidateGC((DrawablePtr)pBitmap, pGC1);
			(void)afbBitBlt(pSrcDrawable, (DrawablePtr)pBitmap, pGC1, srcx, srcy,
								  width, height, 0, 0, afbDoBitbltCopy, plane);
			free_pixmap = TRUE;
		}
#if 0
		else {
			/* XXX: could cope with N-deep pixmap source case without using tmp
			 * src bitmap by setting up a scratch pixmap header and fiddle
			 * around with the pbits pointer.
			 */
		}
#endif
		afbReduceOpaqueStipple(pGC->fgPixel, pGC->bgPixel, pGC->planemask,
										pGC->depth, afbRropsOS);
		(void)afbBitBlt((DrawablePtr)pBitmap, pDstDrawable, pGC, 0, 0, width,
							  height, dstx, dsty, afbCopy1ToN, pGC->planemask);
		if (free_pixmap) {
			(*pScreen->DestroyPixmap)(pBitmap);
			FreeScratchGC(pGC1);
		}

		if (pGC->fExpose)
			prgnExposed = miHandleExposures(pSrcDrawable, pDstDrawable, pGC, srcx,
													  srcy, width, height, dstx, dsty,
													  plane);
	}
	return prgnExposed;
}

void
afbCopy1ToN(pSrc, pDst, alu, prgnDst, pptSrc, planemask)
	DrawablePtr pSrc, pDst;
	int alu;
	RegionPtr prgnDst;
	DDXPointPtr pptSrc;
	unsigned long planemask;
{
	int numRects = REGION_NUM_RECTS(prgnDst);
	BoxPtr pbox = REGION_RECTS(prgnDst);
	int r;

	for (r = 0; r < numRects; r++, pbox++, pptSrc++) {
		int dx = pptSrc->x;
		int dy = pptSrc->y;

		if (alu == GXcopy)
			afbOpaqueStippleAreaCopy(pDst, 1, pbox, alu, (PixmapPtr)pSrc, dx, dy,
											  afbRropsOS, planemask);
		else
			afbOpaqueStippleAreaGeneral(pDst, 1, pbox, alu, (PixmapPtr)pSrc, dx,
												  dy, afbRropsOS, planemask);
	}
}