1 /* Combined Purdue/PurduePlus patches, level 2.0, 1/17/89 */
2 /***********************************************************
4 Copyright 1987, 1998 The Open Group
6 Permission to use, copy, modify, distribute, and sell this software and its
7 documentation for any purpose is hereby granted without fee, provided that
8 the above copyright notice appear in all copies and that both that
9 copyright notice and this permission notice appear in supporting
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
19 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 Except as contained in this notice, the name of The Open Group shall not be
23 used in advertising or otherwise to promote the sale, use or other dealings
24 in this Software without prior written authorization from The Open Group.
27 Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
31 Permission to use, copy, modify, and distribute this software and its
32 documentation for any purpose and without fee is hereby granted,
33 provided that the above copyright notice appear in all copies and that
34 both that copyright notice and this permission notice appear in
35 supporting documentation, and that the name of Digital not be
36 used in advertising or publicity pertaining to distribution of the
37 software without specific, written prior permission.
39 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
40 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
41 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
42 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
43 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
44 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
47 ******************************************************************/
48 #ifdef HAVE_DIX_CONFIG_H
49 #include <dix-config.h>
58 /* Solid bresenham line */
60 e2 is used less often than e1, so it's not in a register
64 mfbBresS(rop
, addrlbase
, nlwidth
, signdx
, signdy
, axis
, x1
, y1
, e
, e1
, e2
, len
)
65 int rop
; /* a reduced rasterop */
66 PixelType
*addrlbase
; /* pointer to base of bitmap */
67 int nlwidth
; /* width in longwords of bitmap */
68 int signdx
, signdy
; /* signs of directions */
69 int axis
; /* major axis (Y_AXIS or X_AXIS) */
70 int x1
, y1
; /* initial point */
71 register int e
; /* error accumulator */
72 register int e1
; /* bresenham increments */
74 int len
; /* length of line */
76 register int yinc
; /* increment to next scanline, in bytes */
77 register PixelType
*addrl
; /* bitmask 32-bit pointer */
78 register PixelType bit
; /* current bit being set/cleared/etc. */
79 PixelType leftbit
= mask
[0]; /* leftmost bit to process in new word */
80 PixelType rightbit
= mask
[PPW
-1]; /* rightmost bit to process in new word */
82 register int e3
= e2
-e1
;
85 /* point to longword containing first point */
86 addrl
= mfbScanline(addrlbase
, x1
, y1
, nlwidth
);
87 yinc
= signdy
* nlwidth
;
88 e
= e
-e1
; /* to make looping easier */
93 if (rop
== RROP_BLACK
)
105 bit
= SCRRIGHT(bit
,1);
110 mfbScanlineInc(addrl
, yinc
);
138 bit
= SCRLEFT(bit
,1);
142 mfbScanlineInc(addrl
, yinc
);
172 bit
= SCRRIGHT(bit
,1);
173 if (!bit
) { bit
= leftbit
;addrl
++; }
176 mfbScanlineInc(addrl
, yinc
);
187 bit
= SCRLEFT(bit
,1);
188 if (!bit
) { bit
= rightbit
;addrl
--; }
191 mfbScanlineInc(addrl
, yinc
);
196 else if (rop
== RROP_WHITE
)
209 bit
= SCRRIGHT(bit
,1);
213 mfbScanlineInc(addrl
, yinc
);
241 bit
= SCRLEFT(bit
,1);
245 mfbScanlineInc(addrl
, yinc
);
275 bit
= SCRRIGHT(bit
,1);
276 if (!bit
) { bit
= leftbit
;addrl
++; }
279 mfbScanlineInc(addrl
, yinc
);
290 bit
= SCRLEFT(bit
,1);
291 if (!bit
) { bit
= rightbit
;addrl
--; }
294 mfbScanlineInc(addrl
, yinc
);
299 else if (rop
== RROP_INVERT
)
311 mfbScanlineInc(addrl
, yinc
);
314 bit
= SCRRIGHT(bit
,1);
315 if (!bit
) { bit
= leftbit
;addrl
++; }
326 mfbScanlineInc(addrl
, yinc
);
329 bit
= SCRLEFT(bit
,1);
330 if (!bit
) { bit
= rightbit
;addrl
--; }
344 bit
= SCRRIGHT(bit
,1);
345 if (!bit
) { bit
= leftbit
;addrl
++; }
348 mfbScanlineInc(addrl
, yinc
);
359 bit
= SCRLEFT(bit
,1);
360 if (!bit
) { bit
= rightbit
; addrl
--; }
363 mfbScanlineInc(addrl
, yinc
);