]> git.sesse.net Git - rdpsrv/blob - Xserver/programs/Xserver/mi/mipolypnt.c
Support RDP5 logon packets.
[rdpsrv] / Xserver / programs / Xserver / mi / mipolypnt.c
1 /***********************************************************
2
3 Copyright (c) 1987  X Consortium
4
5 Permission is hereby granted, free of charge, to any person obtaining a copy
6 of this software and associated documentation files (the "Software"), to deal
7 in the Software without restriction, including without limitation the rights
8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 copies of the Software, and to permit persons to whom the Software is
10 furnished to do so, subject to the following conditions:
11
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
14
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 X CONSORTIUM 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.
21
22 Except as contained in this notice, the name of the X Consortium 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 X Consortium.
25
26
27 Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
28
29                         All Rights Reserved
30
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.  
38
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
45 SOFTWARE.
46
47 ******************************************************************/
48 /* $XConsortium: mipolypnt.c,v 5.2 94/04/17 20:27:44 dpw Exp $ */
49 #include "X.h"
50 #include "Xprotostr.h"
51 #include "pixmapstr.h"
52 #include "gcstruct.h"
53 #include "windowstr.h"
54
55 void
56 miPolyPoint(pDrawable, pGC, mode, npt, pptInit)
57     DrawablePtr         pDrawable;
58     GCPtr               pGC;
59     int                 mode;           /* Origin or Previous */
60     int                 npt;
61     xPoint              *pptInit;
62 {
63
64     int                 xorg;
65     int                 yorg;
66     int                 nptTmp;
67     XID                 fsOld, fsNew;
68     int                 *pwidthInit, *pwidth;
69     int                 i;
70     register xPoint     *ppt;
71
72     /* make pointlist origin relative */
73     if (mode == CoordModePrevious)
74     {
75         ppt = pptInit;
76         nptTmp = npt;
77         nptTmp--;
78         while(nptTmp--)
79         {
80             ppt++;
81             ppt->x += (ppt-1)->x;
82             ppt->y += (ppt-1)->y;
83         }
84     }
85
86     if(pGC->miTranslate)
87     {
88         ppt = pptInit;
89         nptTmp = npt;
90         xorg = pDrawable->x;
91         yorg = pDrawable->y;
92         while(nptTmp--)
93         {
94             ppt->x += xorg;
95             ppt++->y += yorg;
96         }
97     }
98
99     fsOld = pGC->fillStyle;
100     fsNew = FillSolid;
101     if(pGC->fillStyle != FillSolid)
102     {
103         DoChangeGC(pGC, GCFillStyle, &fsNew, 0);
104         ValidateGC(pDrawable, pGC);
105     }
106     if(!(pwidthInit = (int *)ALLOCATE_LOCAL(npt * sizeof(int))))
107         return;
108     pwidth = pwidthInit;
109     for(i = 0; i < npt; i++)
110         *pwidth++ = 1;
111     (*pGC->ops->FillSpans)(pDrawable, pGC, npt, pptInit, pwidthInit, FALSE); 
112
113     if(fsOld != FillSolid)
114     {
115         DoChangeGC(pGC, GCFillStyle, &fsOld, 0);
116         ValidateGC(pDrawable, pGC);
117     }
118     DEALLOCATE_LOCAL(pwidthInit);
119 }
120