1 /***********************************************************
3 Copyright 1987, 1998 The Open Group
5 Permission to use, copy, modify, distribute, and sell this software and its
6 documentation for any purpose is hereby granted without fee, provided that
7 the above copyright notice appear in all copies and that both that
8 copyright notice and this permission notice appear in supporting
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 Except as contained in this notice, the name of The Open Group shall not be
22 used in advertising or otherwise to promote the sale, use or other dealings
23 in this Software without prior written authorization from The Open Group.
26 Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
30 Permission to use, copy, modify, and distribute this software and its
31 documentation for any purpose and without fee is hereby granted,
32 provided that the above copyright notice appear in all copies and that
33 both that copyright notice and this permission notice appear in
34 supporting documentation, and that the name of Digital not be
35 used in advertising or publicity pertaining to distribution of the
36 software without specific, written prior permission.
38 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
39 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
40 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
41 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
42 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
43 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
46 ******************************************************************/
48 #ifdef HAVE_DIX_CONFIG_H
49 #include <dix-config.h>
56 #include "windowstr.h"
57 #include "pixmapstr.h"
58 #include "scrnintstr.h"
69 /* Put and Get images on a monochrome frame buffer
71 * we do this by creating a temporary pixmap and making its
72 * pointer to bits point to the buffer read in from the client.
73 * this works because of the padding rules specified at startup
75 * Note that CopyArea must know how to copy a bitmap into the server-format
78 * For speed, mfbPutImage should allocate the temporary pixmap on the stack.
80 * even though an XYBitmap and an XYPixmap have the same
81 * format (for this device), PutImage has different semantics for the
82 * two. XYPixmap just does the copy; XYBitmap takes gc.fgPixel for
83 * a 1 bit, gc.bgPixel for a 0 bit, which we notice is exactly
86 * written by drewry, september 1986
93 mfbPutImage(dst
, pGC
, depth
, x
, y
, w
, h
, leftPad
, format
, pImage
)
96 int depth
, x
, y
, w
, h
;
103 if (!(pGC
->planemask
& 1))
106 /* 0 may confuse CreatePixmap, and will sometimes be
107 passed by the mi text code
109 if ((w
== 0) || (h
== 0))
112 pPixmap
= GetScratchPixmapHeader(dst
->pScreen
, w
+leftPad
, h
, 1, 1,
113 BitmapBytePad(w
+leftPad
), (pointer
)pImage
);
117 pGC
->fExpose
= FALSE
;
118 if (format
!= XYBitmap
)
119 (*pGC
->ops
->CopyArea
)((DrawablePtr
)pPixmap
, dst
, pGC
, leftPad
, 0,
122 (*pGC
->ops
->CopyPlane
)((DrawablePtr
)pPixmap
, dst
, pGC
, leftPad
, 0,
125 FreeScratchPixmapHeader(pPixmap
);
130 * pdstLine points to space allocated by caller, which he can do since
131 * he knows dimensions of the pixmap
132 * we can call mfbDoBitblt because the dispatcher has promised not to send us
133 * anything that would require going over the edge of the screen.
135 * XYPixmap and ZPixmap are the same for mfb.
136 * For any planemask with bit 0 == 0, just fill the dst with 0.
140 mfbGetImage( pDrawable
, sx
, sy
, w
, h
, format
, planeMask
, pdstLine
)
141 DrawablePtr pDrawable
;
144 unsigned long planeMask
;
153 ScreenPtr pScreen
= pDrawable
->pScreen
;
156 pPixmap
= GetScratchPixmapHeader(pScreen
, w
, h
, /*depth*/ 1, /*bpp*/ 1,
157 BitmapBytePad(w
), (pointer
)pdstLine
);
161 ptSrc
.x
= sx
+ pDrawable
->x
;
162 ptSrc
.y
= sy
+ pDrawable
->y
;
167 REGION_INIT(pScreen
, &rgnDst
, &box
, 1);
168 mfbDoBitblt(pDrawable
, (DrawablePtr
)pPixmap
,
169 GXcopy
, &rgnDst
, &ptSrc
);
170 REGION_UNINIT(pScreen
, &rgnDst
);
171 FreeScratchPixmapHeader(pPixmap
);
175 bzero(pdstLine
, BitmapBytePad(w
) * h
);