1/*
2
3Copyright 1986, 1998  The Open Group
4
5Permission to use, copy, modify, distribute, and sell this software and its
6documentation for any purpose is hereby granted without fee, provided that
7the above copyright notice appear in all copies and that both that
8copyright notice and this permission notice appear in supporting
9documentation.
10
11The above copyright notice and this permission notice shall be included in
12all copies or substantial portions of the Software.
13
14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21Except as contained in this notice, the name of The Open Group shall not be
22used in advertising or otherwise to promote the sale, use or other dealings
23in this Software without prior written authorization from The Open Group.
24
25*/
26
27#ifdef HAVE_CONFIG_H
28#include <config.h>
29#endif
30#include "Xlibint.h"
31
32int
33XSetArcMode (
34    register Display *dpy,
35    register GC gc,
36    int arc_mode)
37{
38    LockDisplay(dpy);
39    if (gc->values.arc_mode != arc_mode) {
40	gc->values.arc_mode = arc_mode;
41	gc->dirty |= GCArcMode;
42    }
43    UnlockDisplay(dpy);
44    SyncHandle();
45    return 1;
46}
47
48int
49XSetFillRule (
50    register Display *dpy,
51    register GC gc,
52    int fill_rule)
53{
54    LockDisplay(dpy);
55    if (gc->values.fill_rule != fill_rule) {
56	gc->values.fill_rule = fill_rule;
57	gc->dirty |= GCFillRule;
58    }
59    UnlockDisplay(dpy);
60    SyncHandle();
61    return 1;
62}
63
64int
65XSetFillStyle (
66    register Display *dpy,
67    register GC gc,
68    int fill_style)
69{
70    LockDisplay(dpy);
71    if (gc->values.fill_style != fill_style) {
72	gc->values.fill_style = fill_style;
73	gc->dirty |= GCFillStyle;
74    }
75    UnlockDisplay(dpy);
76    SyncHandle();
77    return 1;
78}
79
80int
81XSetGraphicsExposures (
82    register Display *dpy,
83    register GC gc,
84    Bool graphics_exposures)
85{
86    LockDisplay(dpy);
87    if (gc->values.graphics_exposures != graphics_exposures) {
88	gc->values.graphics_exposures = graphics_exposures;
89	gc->dirty |= GCGraphicsExposures;
90    }
91    UnlockDisplay(dpy);
92    SyncHandle();
93    return 1;
94}
95
96int
97XSetSubwindowMode (
98    register Display *dpy,
99    register GC gc,
100    int subwindow_mode)
101{
102    LockDisplay(dpy);
103    if (gc->values.subwindow_mode != subwindow_mode) {
104	gc->values.subwindow_mode = subwindow_mode;
105	gc->dirty |= GCSubwindowMode;
106    }
107    UnlockDisplay(dpy);
108    SyncHandle();
109    return 1;
110}
111