~chasedouglas/ubuntu/maverick/xorg-server/multitouch

1 by Daniel Stone
Import upstream version 0.99.3
1
/***********************************************************
2
3
Copyright 1987, 1998  The Open Group
4
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
9
documentation.
10
11
The above copyright notice and this permission notice shall be included in
12
all copies or substantial portions of the Software.
13
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.
20
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.
24
25
26
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
27
28
                        All Rights Reserved
29
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.  
37
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
44
SOFTWARE.
45
46
******************************************************************/
47
48
#ifdef HAVE_DIX_CONFIG_H
49
#include <dix-config.h>
50
#endif
51
52
#include <X11/X.h>
53
#include <X11/Xprotostr.h>
54
#include "gcstruct.h"
55
#include "windowstr.h"
56
#include "pixmap.h"
57
#include "mi.h"
58
#include "misc.h"
59
60
/* mi rectangles
61
   written by newman, with debts to all and sundry
62
*/
63
64
/* MIPOLYFILLRECT -- public entry for PolyFillRect request
65
 * very straight forward: translate rectangles if necessary
66
 * then call FillSpans to fill each rectangle.  We let FillSpans worry about
67
 * clipping to the destination
68
 */
0.8.1 by Julien Cristau
Import upstream version 1.6.99.903
69
void
1.1.20 by Timo Aaltonen
Import upstream version 1.5.99.3
70
miPolyFillRect(
71
    DrawablePtr	pDrawable,
72
    GCPtr	pGC,
73
    int		nrectFill,	/* number of rectangles to fill */
74
    xRectangle	*prectInit	/* Pointer to first rectangle to fill */
75
    )
1 by Daniel Stone
Import upstream version 0.99.3
76
{
77
    int i;
1.1.7 by Timo Aaltonen
Import upstream version 1.4
78
    int	height;
79
    int	width;
80
    xRectangle *prect; 
81
    int	xorg;
82
    int	yorg;
83
    int	maxheight;
84
    DDXPointPtr	pptFirst;
85
    DDXPointPtr ppt;
86
    int	*pwFirst;
87
    int *pw;
1 by Daniel Stone
Import upstream version 0.99.3
88
89
    if (pGC->miTranslate)
90
    {
91
	xorg = pDrawable->x;
92
	yorg = pDrawable->y;
93
        prect = prectInit;
94
        maxheight = 0;
95
        for (i = 0; i<nrectFill; i++, prect++)
96
        {
97
	    prect->x += xorg;
98
	    prect->y += yorg;
99
	    maxheight = max(maxheight, prect->height);
100
        }
101
    }
102
    else
103
    {
104
        prect = prectInit;
105
        maxheight = 0;
106
        for (i = 0; i<nrectFill; i++, prect++)
107
	    maxheight = max(maxheight, prect->height);
108
    }
109
0.8.1 by Julien Cristau
Import upstream version 1.6.99.903
110
    pptFirst = xalloc(maxheight * sizeof(DDXPointRec));
111
    pwFirst = xalloc(maxheight * sizeof(int));
1 by Daniel Stone
Import upstream version 0.99.3
112
    if(!pptFirst || !pwFirst)
113
    {
1.1.14 by Timo Aaltonen
Import upstream version 1.4.99.905
114
	if (pwFirst) xfree(pwFirst);
115
	if (pptFirst) xfree(pptFirst);
1 by Daniel Stone
Import upstream version 0.99.3
116
	return;
117
    }
118
119
    prect = prectInit;
120
    while(nrectFill--)
121
    {
122
	ppt = pptFirst;
123
	pw = pwFirst;
124
	height = prect->height;
125
	width = prect->width;
126
	xorg = prect->x;
127
	yorg = prect->y;
128
	while(height--)
129
	{
130
	    *pw++ = width;
131
	    ppt->x = xorg;
132
	    ppt->y = yorg;
133
	    ppt++;
134
	    yorg++;
135
	}
136
	(* pGC->ops->FillSpans)(pDrawable, pGC, 
137
			   prect->height, pptFirst, pwFirst,
138
			   1);
139
	prect++;
140
    }
1.1.14 by Timo Aaltonen
Import upstream version 1.4.99.905
141
    xfree(pwFirst);
142
    xfree(pptFirst);
1 by Daniel Stone
Import upstream version 0.99.3
143
}