1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
/*
* Copyright 1990, 1991 by the Massachusetts Institute of Technology and
* UniSoft Group Limited.
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation, and that the names of MIT and UniSoft not be
* used in advertising or publicity pertaining to distribution of the
* software without specific, written prior permission. MIT and UniSoft
* make no representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*
* $XConsortium$
*/
>>TITLE XSetClipRectangles CH05
void
XSetClipRectangles(display, gc, clip_x_origin, clip_y_origin, rectangles, n, ordering)
Display *display = Dsp;
GC gc;
int clip_x_origin = 1;
int clip_y_origin = 1;
XRectangle *rectangles = &crect;
int n = 1;
int ordering = Unsorted;
>>EXTERN
XRectangle crect;
int
bad_orderA(order_arg)
int order_arg;
{
XVisualInfo *vp;
Window win;
XGCValues values;
XRectangle drects[2];
int i, j;
int pass = 0, fail = 0;
resetvinf(VI_WIN);
nextvinf(&vp);
win = makewin(display, vp);
values.foreground = W_FG;
values.background = W_BG;
drects[0].x = 0;
drects[0].y = 10;
drects[0].width = drects[0].height = 5;
drects[1].x = 10;
drects[1].y = 5;
drects[1].width = drects[1].height = 5;
gc = XCreateGC(display, win, GCForeground | GCBackground, &values);
rectangles = drects;
n = 2;
ordering = order_arg;
/*
* XCALL can't be used at the moment -
* it expects geterr() to have one correct return type.
*/
startcall(Dsp);
if (isdeleted()) {
return;
}
XSetClipRectangles(display, gc, clip_x_origin, clip_y_origin, rectangles, n, ordering);
endcall(Dsp);
if (geterr() == BadMatch) {
trace("XSetClipRectangles returned BadMatch error.");
CHECK;
} else if (geterr() == Success) {
trace("XSetClipRectangles did not return an error.");
CHECK;
} else {
report("Got %s, Expecting BadMatch or Success.", errorname(geterr()));
FAIL;
}
return(pass);
}
int
bad_orderB(order_arg)
int order_arg;
{
XVisualInfo *vp;
Window win;
XGCValues values;
XRectangle drects[3];
int i, j;
int pass = 0, fail = 0;
resetvinf(VI_WIN);
nextvinf(&vp);
win = makewin(display, vp);
values.foreground = W_FG;
values.background = W_BG;
drects[0].x = 20;
drects[0].y = 5;
drects[0].width = drects[0].height = 5;
drects[1].x = 10;
drects[1].y = 5;
drects[1].width = drects[1].height = 5;
gc = XCreateGC(display, win, GCForeground | GCBackground, &values);
rectangles = drects;
n = 2;
ordering = order_arg;
/*
* XCALL can't be used at the moment -
* it expects geterr() to have one correct return type.
*/
startcall(Dsp);
if (isdeleted()) {
return;
}
XSetClipRectangles(display, gc, clip_x_origin, clip_y_origin, rectangles, n, ordering);
endcall(Dsp);
if (geterr() == BadMatch) {
trace("XSetClipRectangles returned BadMatch error.");
CHECK;
} else if (geterr() == Success) {
trace("XSetClipRectangles did not return an error.");
CHECK;
} else {
report("Got %s, Expecting BadMatch or Success.", errorname(geterr()));
FAIL;
}
return(pass);
}
int
bad_orderC(order_arg)
int order_arg;
{
XVisualInfo *vp;
Window win;
XGCValues values;
XRectangle drects[3];
int i, j;
int pass = 0, fail = 0;
resetvinf(VI_WIN);
nextvinf(&vp);
win = makewin(display, vp);
values.foreground = W_FG;
values.background = W_BG;
drects[0].x = 20;
drects[0].y = 5;
drects[0].width = drects[0].height = 5;
drects[1].x = 30;
drects[1].y = 5;
drects[1].width = drects[1].height = 4;
gc = XCreateGC(display, win, GCForeground | GCBackground, &values);
rectangles = drects;
n = 2;
ordering = order_arg;
/*
* XCALL can't be used at the moment -
* it expects geterr() to have one correct return type.
*/
startcall(Dsp);
if (isdeleted()) {
return;
}
XSetClipRectangles(display, gc, clip_x_origin, clip_y_origin, rectangles, n, ordering);
endcall(Dsp);
if (geterr() == BadMatch) {
trace("XSetClipRectangles returned BadMatch error.");
CHECK;
} else if (geterr() == Success) {
trace("XSetClipRectangles did not return an error.");
CHECK;
} else {
report("Got %s, Expecting BadMatch or Success.", errorname(geterr()));
FAIL;
}
return(pass);
}
>>ASSERTION Good A
A call to xname sets the
.M clip_mask
component of the specified GC to the specified list of rectangles
and sets the
.M clip_x_origin
and
.M clip_y_origin
components of the specified GC to the arguments
.A clip_x_origin
and
.A clip_y_origin .
>>STRATEGY
Create window.
Create GC bg = BlackPixel, fg = WhitePixel, fn = GXxor.
Set pixel at (0, 0) to fg with XDrawPoint.
Verify Pixel at (0, 0) is fg with XGetimage and GetPixel.
Set clip mask to rectangle (1, 1) (2, 2) with XSetClipRectangles.
Set Pixel at (2, 2) with XDrawPoint.
Verify Pixel at (2, 2) is fg with XGetimage and GetPixel.
Set pixel at (0, 0) to bg with XDrawPoint.
Verify Pixel at (0, 0) is fg with XGetimage and GetPixel.
>>CODE
XVisualInfo *vp;
Window win;
XGCValues values;
resetvinf(VI_WIN);
nextvinf(&vp);
win = makewin(display, vp);
values.foreground = W_FG;
values.background = W_BG;
values.function = GXxor;
gc = XCreateGC(display, win, GCForeground | GCBackground | GCFunction, &values);
XDrawPoint(display, win, gc, 0, 0);
if( ! checkpixel(display, win, 0, 0, W_FG)) {
delete("Pixel at (0, 0) was not set to foreground.");
return;
} else
CHECK;
crect.x = crect.y = 1;
crect.width = crect.height = 1;
XCALL;
XDrawPoint(display, win, gc, 2, 2);
if( ! checkpixel(display, win, 2, 2, W_FG)) {
delete("Pixel at (2, 2) was not set to foreground.");
return;
} else
CHECK;
XDrawPoint(display, win, gc, 0, 0);
if( ! checkpixel(display, win, 0, 0, W_FG)) {
report("Pixel at (0, 0) was not left as foreground.");
FAIL;
} else
CHECK;
CHECKPASS(3);
>>ASSERTION Good B 1
When two or more of the
.A rectangles
intersect, then no error occurs.
>>ASSERTION Good A
When the number of rectangles specified by the argument
.A n
is zero, then the
.M clip_mask
component of the specified
.A gc
is set to disable output on any subsequent graphics operation.
>>STRATEGY
For all supported visuals:
Create a window
Verify that every window pixel is not set.
Call XSetClipRectangles with a meaningful rectangle and n=0;
Verify that every window pixel cannot be set.
>>CODE
XVisualInfo *vp;
Window win;
XGCValues values;
GC pgc;
int i, j;
values.foreground = W_FG;
values.background = W_BG;
crect.x = 0;
crect.y = 0;
crect.width = 10;
crect.height = 20;
for(resetvinf(VI_WIN); nextvinf(&vp); ) {
win = makewin(display, vp);
gc = XCreateGC(display, win, GCForeground | GCBackground, &values);
if( checkarea(display, win, (struct area *) 0, W_BG, 0L, 0) == False) {
delete("Window contents were not initialised.");
return;
} else
CHECK;
n = 0;
XCALL;
for(j=0; j<W_STDHEIGHT; j++)
for(i=0; i< W_STDWIDTH; i++)
XDrawPoint(display, win, gc, i, j);
if( checkarea(display, win, (struct area *) 0, W_BG, 0L, 0) == False) {
report("Drawing was not disabled.");
FAIL;
} else
CHECK;
}
CHECKPASS(2 * nvinf());
>>ASSERTION Good A
When the
.A ordering
argument is
.S YSorted ,
and the specified list of rectangles is not non-decreasing in the Y origin,
then either a
.S BadMatch
error occurs or no error occurs.
>>STRATEGY
Create list of rectangles decreasing in Y origin.
Call XSetClipRectangles.
Verify that if an error occurs it is a BadMatch error.
>>CODE
if(bad_orderA(YSorted) == 1)
PASS;
>>ASSERTION Good A
When the
.A ordering
argument is
.S YXSorted
and the specified list of rectangles is either not non-decreasing in
the Y origin
or rectangles with the same Y origin are not
non-decreasing in the X origin,
then either a
.S BadMatch
error occurs or no error occurs.
>>STRATEGY
Create list of rectangles decreasing in Y origin.
Call XSetClipRectangles.
Verify that if an error occurs it is a BadMatch error.
Create list of rectangles with
same Y origin and height and decreasing in X origin.
Call XSetClipRectangles.
Verify that if an error occurs it is a BadMatch error.
>>CODE
if(bad_orderA(YXSorted) == 1 &&
bad_orderB(YXSorted) == 1)
PASS;
>>ASSERTION Good A
When the
.A ordering
argument is
.S YXBanded
and the specified list of rectangles is either not non-decreasing in
the Y origin
or rectangles with the same Y origin are not
non-decreasing in the X origin
or there is a Y scanline included by
rectangles with different Y origins or extents,
then either a
.S BadMatch
error occurs or no error occurs.
>>STRATEGY
Create list of rectangles decreasing in Y origin.
Call XSetClipRectangles.
Verify that if an error occurs it is a BadMatch error.
Create list of rectangles with
same Y origin and height and decreasing in X origin.
Call XSetClipRectangles.
Verify that if an error occurs it is a BadMatch error.
Create list of rectangles with same Y origin and increasing X
origin and differing extents.
Call XSetClipRectangles.
Verify that if an error occurs it is a BadMatch error.
>>CODE
if(bad_orderA(YXBanded) == 1 &&
bad_orderB(YXBanded) == 1 &&
bad_orderC(YXBanded) == 1)
PASS;
>>ASSERTION Bad B 1
.ER Alloc
>>ASSERTION Bad A
.ER GC
>>ASSERTION Bad A
.ER Value ordering Unsorted YSorted YXSorted YXBanded
>># HISTORY cal Completed Written in new format and style
>># HISTORY kieron Completed Global and pixel checking to do - 19/11/90
>># HISTORY dave Completed Final checking to do - 21/11/90
>># HISTORY cal Action Writing code.
|