summaryrefslogtreecommitdiff
path: root/x11perf.man
blob: e91eefd480ed0696489632adc453994ca3b5e508 (plain)
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
.\" $Xorg: x11perf.man,v 1.4 2001/02/09 02:05:38 xorgcvs Exp $
.\" Copyright 1988, 1989 Digital Equipment Corporation.
.\" Copyright 1989, 1994, 1998  The Open Group
.\" 
.\" 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.
.\" 
.\" The above copyright notice and this permission notice shall be included
.\" in all copies or substantial portions of the Software.
.\" 
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
.\" IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
.\" OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
.\" ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
.\" OTHER DEALINGS IN THE SOFTWARE.
.\" 
.\" Except as contained in this notice, the name of The Open Group shall
.\" not be used in advertising or otherwise to promote the sale, use or
.\" other dealings in this Software without prior written authorization
.\" from The Open Group.
.\"
.\" $XFree86: xc/programs/x11perf/x11perf.man,v 1.9 2003/05/29 21:48:11 herrb Exp $
.\"
.TH X11PERF 1 __xorgversion__
.SH NAME
x11perf \- X11 server performance test program
.SH SYNTAX
.B x11perf
[ \-option ... ]
.SH DESCRIPTION
The
.I x11perf
program runs one or more performance tests and reports how fast an X server can
execute the tests.
.PP
Many graphics benchmarks assume that the graphics device is used to display the
output of a single fancy graphics application, and that the user gets his work
done on some other device, like a terminal.  Such benchmarks usually measure
drawing speed for lines, polygons, text, etc.
.PP
Since workstations are not used as standalone graphics engines, but as
super-terminals, 
.I x11perf 
measures window management performance as well as
traditional graphics performance.  
.I x11perf 
includes benchmarks for the time it
takes to create and map windows (as when you start up an application); to map a
pre-existing set of windows onto the screen (as when you deiconify an
application or pop up a menu); and to rearrange windows (as when you slosh
windows to and fro trying to find the one you want).
.PP
.I x11perf 
also measures graphics performance for operations not normally used in
standalone graphics displays, but are nonetheless used frequently by X
applications.  Such operations include CopyPlane (used to map bitmaps into
pixels), scrolling (used in text windows), and various stipples and tiles
(used for CAD and color half-toning, respectively).
.PP
.I x11perf 
should be used to analyze particular strengths and weaknesses
of servers, and is most useful to a server writer who wants to
analyze and improve a server.
.I x11perf
is meant to comprehensively exercise just about every X11 operation you can
perform; it does not purport to be a representative sample of the
operations that X11 applications actually use.
While it can be used as a benchmark, it was written and is intended as
a performance testing tool.
.PP
As such,
.I x11perf 
DOES NOT whittle down measurements to a single ``HeXStones''
or ``MeXops'' number.  We consider such numbers to be uninformative 
at best and misleading at worst.  
Some servers which are very fast for certain applications can be
very slow for others.
No single number or small set of numbers are sufficient to
characterize how an X implementation will perform on all applications.
However, by knowledge of your favorite application, you
may be able to use the numbers
.I x11perf
reports to predict its performance on a given X implementation.
.PP
That said, you might also want to look at
.I x11perfcomp(1),
a program to compare the outputs of different 
.I x11perf
runs.  You provide a list of files containing results from
.I x11perf,
and it lays them out in a nice tabular format.
.PP
For repeatable results, 
.I x11perf 
should be run using a local connection on a
freshly-started server.  The default configuration runs each test 5 times, in
order to see if each trial takes approximately the same amount of time.
Strange glitches should be examined; if non-repeatable one might
chalk them up to
daemons and network traffic.  Each trial is run for 5 seconds, in order to
reduce random time differences.  The number of objects processed per second is
displayed to 3 significant digits, but you'll be lucky on most UNIX system if
the numbers are actually consistent to 2 digits.
.I x11perf
moves the cursor out of the test window; you should be careful not
to bump the mouse and move it back into the window.
(A prize to people who correctly explain why!!).
.PP
Before running a test,
.I x11perf
determines what the round trip time to the server is, and factors this out of
the final timing reported.  It ensures that the server has actually performed
the work requested by fetching a pixel back from the test window, which means
that servers talking to graphics accelerators can't claim that they are done,
while in the meantime the accelerator is painting madly.
.PP
By default 
.I x11perf
automatically calibrates the number of repetitions of each test,
so that each should take approximately the same length of time to run across
servers of widely differing speeds.  However, since each test must be run to
completion at least once, some slow servers may take a very long time,
particularly on the window moving and resizing tests, and on the arc drawing
tests.
.PP
All timing reports are for the smallest object involved.  For example, the line
tests use a PolyLine request to paint several lines at once, but report how
many lines per second the server can paint, not how many PolyLine requests per
second.  Text tests paint a line of characters, but report on the number of
characters per second.  Some window tests map, unmap, or move a single parent
window, but report on how many children windows per second the server can map,
unmap, or move.
.PP
The current program is mostly the responsibility of Joel McCormack.  It is
based upon the x11perf developed by Phil Karlton, Susan Angebranndt, Chris
Kent, Mary Walker, and Todd Newman, who wanted to assess performance differences between various servers.
Several tests were added  in order to write and tune
the PMAX (DECStation 3100) servers.  
For a general release to the world, 
.I x11perf 
was rewritten to ease making comparisons between widely varying
machines, to cover most important (and unimportant) X functionality,
and to exercise graphics operations in as many different
orientations and alignments as possible.
.SH OPTIONS
.I x11perf 
is solely Xlib based, and
accepts the options listed below:
.TP 14
.B \-display host:dpy
Specifies which display to use.
.TP 14
.B \-sync
Runs the tests in synchronous mode.
Normally only useful for debugging 
.I x11perf .
.TP 14
.B \-pack
Runs rectangle tests so that they pack rectangles right next to each other.
This makes it easy to debug server code for stipples and tiles...if the
pattern looks ugly, you've got alignment problems.
.TP 14
.B \-repeat \fI<n>\fP
Repeats each test 
.I n
times (by default each test is run 5 times).
.TP 14
.B \-time \fI<s>\fP
Specifies how long in seconds each test should be run (default 5 seconds).
.TP 14
.B \-all
Runs all tests.  This may take a while.
.TP 14
.B \-range \fI<test1>\fP[,\fI<test2>\fP]
Runs all the tests starting from the specified name \fItest1\fP until
the name \fItest2\fP, including both the specified tests. The testnames
should be one of the options starting from -dot. (eg) -range line100
will peform the tests from the 100 pixel line test, and go on till the
last test, -range line100,dline10 will do the tests from line100 to
dline10.
.TP 14
.B \-labels
Generates just the descriptive labels for each test specified.  See
.I x11perfcomp
for more details.
.TP 14
.B \-fg \fIcolor-or-pixel\fP
Specifies the foreground color or pixel value to use.
.TP 14
.B \-bg \fIcolor-or-pixel\fP
Specifies the background color or pixel value to use.
.TP 14
.B \-clips \fIdefault\fP
Default number of clip windows.
.TP 14
.B \-ddbg \fIcolor-or-pixel\fP
Specifies the color or pixel value to use for drawing
the odd segments of a DoubleDashed line or arc.
This will default to the bg color.
.TP 14
.B \-rop <rop0 rop1 ...>
Use specified raster ops (default is GXcopy).
This option only affects graphics
benchmarks in which the graphics function is actually used.
.TP 14
.B \-pm <pm0 pm1 ...>
Use specified planemasks (default is ~0).
This option only affects graphics
benchmarks in which the planemask is actually used.
.TP 14
.B \-depth <depth>
Use a visual with <depth> planes per pixel (default is the default
visual).
.TP 14
.B \-vclass <vclass>
Use a visual with of class <vclass>.  <vclass> can be StaticGray, GrayScale,
StaticColor, PseudoColor, TrueColor, or DirectColor.  (default is the default
visual).
.TP 14
.B \-reps <n>
Specify the repetition count (Default is number that takes aprox. 5 seconds)
.TP 14
.B \-subs <s0 s1 ...>
Specify the number of sub windows to use in the Window tests.
Default is  4, 16, 25, 50, 75, 100 and 200.
.TP 14
.B \-v1.2
Perform only x11perf Version 1.2 tests using Version 1.2 semantics.
.TP 14
.B \-v1.3
Perform only x11perf Version 1.3 tests using Version 1.3 semantics.
.TP 14
.B \-su
Set the save_under window attribute to True on all windows created by x11perf.
Default is False.
.TP 14
.B \-bs <backing_store_hint>
Set the backing_store window attribute to the given value on all windows 
created by x11perf. <backing_store_hint> can be WhenMapped or 
Always.  Default is NotUseful.
.TP 14
.B \-dot
Dot.
.TP 14
.B \-rect1
1x1 solid-filled rectangle.
.TP 14
.B \-rect10
10x10 solid-filled rectangle.
.TP 14
.B \-rect100
100x100 solid-filled rectangle.
.TP 14
.B \-rect500
500x500 solid-filled rectangle.
.TP 14
.B \-srect1
1x1 transparent stippled rectangle, 8x8 stipple pattern.
.TP 14
.B \-srect10
10x10 transparent stippled rectangle, 8x8 stipple pattern.
.TP 14
.B \-srect100
100x100 transparent stippled rectangle, 8x8 stipple pattern.
.TP 14
.B \-srect500
500x500 transparent stippled rectangle, 8x8 stipple pattern.
.TP 14
.B \-osrect1
1x1 opaque stippled rectangle, 8x8 stipple pattern.
.TP 14
.B \-osrect10
10x10 opaque stippled rectangle, 8x8 stipple pattern.
.TP 14
.B \-osrect100
100x100 opaque stippled rectangle, 8x8 stipple pattern.
.TP 14
.B \-osrect500
500x500 opaque stippled rectangle, 8x8 stipple pattern.
.TP 14
.B \-tilerect1
1x1 tiled rectangle, 4x4 tile pattern.
.TP 14
.B \-tilerect10
10x10 tiled rectangle, 4x4 tile pattern.
.TP 14
.B \-tilerect100
100x100 tiled rectangle, 4x4 tile pattern.
.TP 14
.B \-tilerect500
500x500 tiled rectangle, 4x4 tile pattern.
.TP 14
.B \-oddsrect1
1x1 transparent stippled rectangle, 17x15 stipple pattern.
.TP 14
.B \-oddsrect10
10x10 transparent stippled rectangle, 17x15 stipple pattern.
.TP 14
.B \-oddsrect100
100x100 transparent stippled rectangle, 17x15 stipple pattern.
.TP 14
.B \-oddsrect500
500x500 transparent stippled rectangle, 17x15 stipple pattern.
.TP 14
.B \-oddosrect1
1x1 opaque stippled rectangle, 17x15 stipple pattern.
.TP 14
.B \-oddosrect10
10x10 opaque stippled rectangle, 17x15 stipple pattern.
.TP 14
.B \-oddosrect100
100x100 opaque stippled rectangle, 17x15 stipple pattern.
.TP 14
.B \-oddosrect500
500x500 opaque stippled rectangle, 17x15 stipple pattern.
.TP 14
.B \-oddtilerect1
1x1 tiled rectangle, 17x15 tile pattern.
.TP 14
.B \-oddtilerect10
10x10 tiled rectangle, 17x15 tile pattern.
.TP 14
.B \-oddtilerect100
100x100 tiled rectangle, 17x15 tile pattern.
.TP 14
.B \-oddtilerect500
500x500 tiled rectangle, 17x15 tile pattern.
.TP 14
.B \-bigsrect1
1x1 stippled rectangle, 161x145 stipple pattern.
.TP 14
.B \-bigsrect10
10x10 stippled rectangle, 161x145 stipple pattern.
.TP 14
.B \-bigsrect100
100x100 stippled rectangle, 161x145 stipple pattern.
.TP 14
.B \-bigsrect500
500x500 stippled rectangle, 161x145 stipple pattern.
.TP 14
.B \-bigosrect1
1x1 opaque stippled rectangle, 161x145 stipple pattern.
.TP 14
.B \-bigosrect10
10x10 opaque stippled rectangle, 161x145 stipple pattern.
.TP 14
.B \-bigosrect100
100x100 opaque stippled rectangle, 161x145 stipple pattern.
.TP 14
.B \-bigosrect500
500x500 opaque stippled rectangle, 161x145 stipple pattern.
.TP 14
.B \-bigtilerect1
1x1 tiled rectangle, 161x145 tile pattern.
.TP 14
.B \-bigtilerect10
10x10 tiled rectangle, 161x145 tile pattern.
.TP 14
.B \-bigtilerect100
100x100 tiled rectangle, 161x145 tile pattern.
.TP 14
.B \-bigtilerect500
500x500 tiled rectangle, 161x145 tile pattern.
.TP 14
.B \-eschertilerect1
1x1 tiled rectangle, 215x208 tile pattern.
.TP 14
.B \-eschertilerect10
10x10 tiled rectangle, 215x208 tile pattern.
.TP 14
.B \-eschertilerect100
100x100 tiled rectangle, 215x208 tile pattern.
.TP 14
.B \-eschertilerect500
500x500 tiled rectangle, 215x208 tile pattern.
.TP 14
.B \-seg1
1-pixel thin line segment.
.TP 14
.B \-seg10
10-pixel thin line segment.
.TP 14
.B \-seg100
100-pixel thin line segment.
.TP 14
.B \-seg500
500-pixel thin line segment.
.TP 14
.B \-seg100c1
100-pixel thin line segment (1 obscuring rectangle).
.TP 14
.B \-seg100c2
100-pixel thin line segment (2 obscuring rectangles).
.TP 14
.B \-seg100c3
100-pixel thin line segment (3 obscuring rectangles).
.TP 14
.B \-dseg10
10-pixel thin dashed segment (3 on, 2 off).
.TP 14
.B \-dseg100
100-pixel thin dashed segment (3 on, 2 off).
.TP 14
.B \-ddseg100
100-pixel thin double-dashed segment (3 fg, 2 bg).
.TP 14
.B \-hseg10
10-pixel thin horizontal line segment.
.TP 14
.B \-hseg100
100-pixel thin horizontal line segment.
.TP 14
.B \-hseg500
500-pixel thin horizontal line segment.
.TP 14
.B \-vseg10
10-pixel thin vertical line segment.
.TP 14
.B \-vseg100
100-pixel thin vertical line segment.
.TP 14
.B \-vseg500
500-pixel thin vertical line segment.
.TP 14
.B \-whseg10
10-pixel wide horizontal line segment.
.TP 14
.B \-whseg100
100-pixel wide horizontal line segment.
.TP 14
.B \-whseg500
500-pixel wide horizontal line segment.
.TP 14
.B \-wvseg10
10-pixel wide vertical line segment.
.TP 14
.B \-wvseg100
100-pixel wide vertical line segment.
.TP 14
.B \-wvseg500
500-pixel wide vertical line segment.
.TP 14
.B \-line1
1-pixel thin (width 0) line.
.TP 14
.B \-line10
10-pixel thin line.
.TP 14
.B \-line100
100-pixel thin line.
.TP 14
.B \-line500
500-pixel thin line.
.TP 14
.B \-dline10
10-pixel thin dashed line (3 on, 2 off).
.TP 14
.B \-dline100
100-pixel thin dashed line (3 on, 2 off).
.TP 14
.B \-ddline100
100-pixel thin double-dashed line (3 fg, 2 bg).
.TP 14
.B \-wline10
10-pixel line, line width 1.
.TP 14
.B \-wline100
100-pixel line, line width 10.
.TP 14
.B \-wline500
500-pixel line, line width 50.
.TP 14
.B \-wdline100
100-pixel dashed line, line width 10 (30 on, 20 off).
.TP 14
.B \-wddline100
100-pixel double-dashed line, line width 10 (30 fg, 20 bg).
.TP 14
.B \-orect10
10x10 thin rectangle outline.
.TP 14
.B \-orect100
100-pixel thin vertical line segment.
.TP 14
.B \-orect500
500-pixel thin vertical line segment.
.TP 14
.B \-worect10
10x10 wide rectangle outline.
.TP 14
.B \-worect100
100-pixel wide vertical line segment.
.TP 14
.B \-worect500
500-pixel wide vertical line segment.
.TP 14
.B \-circle1
1-pixel diameter thin (line width 0) circle.
.TP 14
.B \-circle10
10-pixel diameter thin circle.
.TP 14
.B \-circle100
100-pixel diameter thin circle.
.TP 14
.B \-circle500
500-pixel diameter thin circle.
.TP 14
.B \-dcircle100
100-pixel diameter thin dashed circle (3 on, 2 off).
.TP 14
.B \-ddcircle100
100-pixel diameter thin double-dashed circle (3 fg, 2 bg).
.TP 14
.B \-wcircle10
10-pixel diameter circle, line width 1.
.TP 14
.B \-wcircle100
100-pixel diameter circle, line width 10.
.TP 14
.B \-wcircle500
500-pixel diameter circle, line width 50.
.TP 14
.B \-wdcircle100
100-pixel diameter dashed circle, line width 10 (30 on, 20 off).
.TP 14
.B \-wddcircle100
100-pixel diameter double-dashed circle, line width 10 (30 fg, 20 bg).
.TP 14
.B \-pcircle10
10-pixel diameter thin partial circle,
orientation and arc angle evenly distributed.
.TP 14
.B \-pcircle100
100-pixel diameter thin partial circle.
.TP 14
.B \-wpcircle10
10-pixel diameter wide partial circle.
.TP 14
.B \-wpcircle100
100-pixel diameter wide partial circle.
.TP 14
.B \-fcircle1
1-pixel diameter filled circle.
.TP 14
.B \-fcircle10
10-pixel diameter filled circle.
.TP 14
.B \-fcircle100
100-pixel diameter filled circle.
.TP 14
.B \-fcircle500
500-pixel diameter filled circle.
.TP 14
.B \-fcpcircle10
10-pixel diameter partial filled circle, chord fill,
orientation and arc angle evenly distributed.
.TP 14
.B \-fcpcircle100
100-pixel diameter partial filled circle, chord fill.
.TP 14
.B \-fspcircle10
10-pixel diameter partial filled circle, pie slice fill,
orientation and arc angle evenly distributed.
.TP 14
.B \-fspcircle100
100-pixel diameter partial filled circle, pie slice fill.
.TP 14
.B \-ellipse10
10-pixel diameter thin (line width 0) ellipse, major and
minor axis sizes evenly distributed.
.TP 14
.B \-ellipse100
100-pixel diameter thin ellipse.
.TP 14
.B \-ellipse500
500-pixel diameter thin ellipse.
.TP 14
.B \-dellipse100
100-pixel diameter thin dashed ellipse (3 on, 2 off).
.TP 14
.B \-ddellipse100
100-pixel diameter thin double-dashed ellipse (3 fg, 2 bg).
.TP 14
.B \-wellipse10
10-pixel diameter ellipse, line width 1.
.TP 14
.B \-wellipse100
100-pixel diameter ellipse, line width 10.
.TP 14
.B \-wellipse500
500-pixel diameter ellipse, line width 50.
.TP 14
.B \-wdellipse100
100-pixel diameter dashed ellipse, line width 10 (30 on, 20 off).
.TP 14
.B \-wddellipse100
100-pixel diameter double-dashed ellipse, line width 10 (30 fg, 20 bg).
.TP 14
.B \-pellipse10
10-pixel diameter thin partial ellipse.
.TP 14
.B \-pellipse100
100-pixel diameter thin partial ellipse.
.TP 14
.B \-wpellipse10
10-pixel diameter wide partial ellipse.
.TP 14
.B \-wpellipse100
100-pixel diameter wide partial ellipse.
.TP 14
.B \-fellipse10
10-pixel diameter filled ellipse.
.TP 14
.B \-fellipse100
100-pixel diameter filled ellipse.
.TP 14
.B \-fellipse500
500-pixel diameter filled ellipse.
.TP 14
.B \-fcpellipse10
10-pixel diameter partial filled ellipse, chord fill.
.TP 14
.B \-fcpellipse100
100-pixel diameter partial filled ellipse, chord fill.
.TP 14
.B \-fspellipse10
10-pixel diameter partial filled ellipse, pie slice fill.
.TP 14
.B \-fspellipse100
100-pixel diameter partial filled ellipse, pie slice fill.
.TP 14
.B \-triangle1
Fill 1-pixel/side triangle.
.TP 14
.B \-triangle10
Fill 10-pixel/side triangle.
.TP 14
.B \-triangle100
Fill 100-pixel/side triangle.
.TP 14
.B \-trap1
Fill 1x1 trapezoid.
.TP 14
.B \-trap10
Fill 10x10 trapezoid.
.TP 14
.B \-trap100
Fill 100x100 trapezoid.
.TP 14
.B \-trap300
Fill 300x300 trapezoid.
.TP 14
.B \-strap1
Fill 1x1 transparent stippled trapezoid, 8x8 stipple pattern.
.TP 14
.B \-strap10
Fill 10x10 transparent stippled trapezoid, 8x8 stipple pattern.
.TP 14
.B \-strap100
Fill 100x100 transparent stippled trapezoid, 8x8 stipple pattern.
.TP 14
.B \-strap300
Fill 300x300 transparent stippled trapezoid, 8x8 stipple pattern.
.TP 14
.B \-ostrap1
Fill 10x10 opaque stippled trapezoid, 8x8 stipple pattern.
.TP 14
.B \-ostrap10
Fill 10x10 opaque stippled trapezoid, 8x8 stipple pattern.
.TP 14
.B \-ostrap100
Fill 100x100 opaque stippled trapezoid, 8x8 stipple pattern.
.TP 14
.B \-ostrap300
Fill 300x300 opaque stippled trapezoid, 8x8 stipple pattern.
.TP 14
.B \-tiletrap1
Fill 10x10 tiled trapezoid, 4x4 tile pattern.
.TP 14
.B \-tiletrap10
Fill 10x10 tiled trapezoid, 4x4 tile pattern.
.TP 14
.B \-tiletrap100
Fill 100x100 tiled trapezoid, 4x4 tile pattern.
.TP 14
.B \-tiletrap300
Fill 300x300 tiled trapezoid, 4x4 tile pattern.
.TP 14
.B \-oddstrap1
Fill 1x1 transparent stippled trapezoid, 17x15 stipple pattern.
.TP 14
.B \-oddstrap10
Fill 10x10 transparent stippled trapezoid, 17x15 stipple pattern.
.TP 14
.B \-oddstrap100
Fill 100x100 transparent stippled trapezoid, 17x15 stipple pattern.
.TP 14
.B \-oddstrap300
Fill 300x300 transparent stippled trapezoid, 17x15 stipple pattern.
.TP 14
.B \-oddostrap1
Fill 10x10 opaque stippled trapezoid, 17x15 stipple pattern.
.TP 14
.B \-oddostrap10
Fill 10x10 opaque stippled trapezoid, 17x15 stipple pattern.
.TP 14
.B \-oddostrap100
Fill 100x100 opaque stippled trapezoid, 17x15 stipple pattern.
.TP 14
.B \-oddostrap300
Fill 300x300 opaque stippled trapezoid, 17x15 stipple pattern.
.TP 14
.B \-oddtiletrap1
Fill 10x10 tiled trapezoid, 17x15 tile pattern.
.TP 14
.B \-oddtiletrap10
Fill 10x10 tiled trapezoid, 17x15 tile pattern.
.TP 14
.B \-oddtiletrap100
Fill 100x100 tiled trapezoid, 17x15 tile pattern.
.TP 14
.B \-oddtiletrap300
Fill 300x300 tiled trapezoid, 17x15 tile pattern.
.TP 14
.B \-bigstrap1
Fill 1x1 transparent stippled trapezoid, 161x145 stipple pattern.
.TP 14
.B \-bigstrap10
Fill 10x10 transparent stippled trapezoid, 161x145 stipple pattern.
.TP 14
.B \-bigstrap100
Fill 100x100 transparent stippled trapezoid, 161x145 stipple pattern.
.TP 14
.B \-bigstrap300
Fill 300x300 transparent stippled trapezoid, 161x145 stipple pattern.
.TP 14
.B \-bigostrap1
Fill 10x10 opaque stippled trapezoid, 161x145 stipple pattern.
.TP 14
.B \-bigostrap10
Fill 10x10 opaque stippled trapezoid, 161x145 stipple pattern.
.TP 14
.B \-bigostrap100
Fill 100x100 opaque stippled trapezoid, 161x145 stipple pattern.
.TP 14
.B \-bigostrap300
Fill 300x300 opaque stippled trapezoid, 161x145 stipple pattern.
.TP 14
.B \-bigtiletrap1
Fill 10x10 tiled trapezoid, 161x145 tile pattern.
.TP 14
.B \-bigtiletrap10
Fill 10x10 tiled trapezoid, 161x145 tile pattern.
.TP 14
.B \-bigtiletrap100
Fill 100x100 tiled trapezoid, 161x145 tile pattern.
.TP 14
.B \-bigtiletrap300
Fill 300x300 tiled trapezoid, 161x145 tile pattern.
.TP 14
.B \-eschertiletrap1
Fill 1x1 tiled trapezoid, 216x208 tile pattern.
.TP 14
.B \-eschertiletrap10
Fill 10x10 tiled trapezoid, 216x208 tile pattern.
.TP 14
.B \-eschertiletrap100
Fill 100x100 tiled trapezoid, 216x208 tile pattern.
.TP 14
.B \-eschertiletrap300
Fill 300x300 tiled trapezoid, 216x208 tile pattern.
.TP 14
.B \-complex10
Fill 10-pixel/side complex polygon.
.TP 14
.B \-complex100
Fill 100-pixel/side complex polygon.
.TP 14
.B \-64poly10convex
Fill 10x10 convex 64-gon.
.TP 14
.B \-64poly100convex
Fill 100x100 convex 64-gon.
.TP 14
.B \-64poly10complex
Fill 10x10 complex 64-gon.
.TP 14
.B \-64poly100complex
Fill 100x100 complex 64-gon.
.TP 14
.B \-ftext
Character in 80-char line (6x13).
.TP 14
.B \-f8text
Character in 70-char line (8x13).
.TP 14
.B \-f9text
Character in 60-char line (9x15).
.TP 14
.B \-f14text16
2-byte character in 40-char line (k14).
.TP 14
.B \-tr10text
Character in 80-char line (Times-Roman 10).
.TP 14
.B \-tr24text
Character in 30-char line (Times-Roman 24).
.TP 14
.B \-polytext
Character in 20/40/20 line (6x13, Times-Roman 10, 6x13).
.TP 14
.B \-polytext16
2-byte character in 7/14/7 line (k14, k24).
.TP 14
.B \-fitext
Character in 80-char image line (6x13).
.TP 14
.B \-f8itext
Character in 70-char image line (8x13).
.TP 14
.B \-f9itext
Character in 60-char image line (9x15).
.TP 14
.B \-f14itext16
2-byte character in 40-char image line (k14).
.TP 14
.B \-f24itext16
2-byte character in 23-char image line (k24).
.TP 14
.B \-tr10itext
Character in 80-char image line (Times-Roman 10).
.TP 14
.B \-tr24itext
Character in 30-char image line (Times-Roman 24).
.TP 14
.B \-scroll10
Scroll 10x10 pixels vertically.
.TP 14
.B \-scroll100
Scroll 100x100 pixels vertically.
.TP 14
.B \-scroll500
Scroll 500x500 pixels vertically.
.TP 14
.B \-copywinwin10
Copy 10x10 square from window to window.
.TP 14
.B \-copywinwin100
Copy 100x100 square from window to window.
.TP 14
.B \-copywinwin500
Copy 500x500 square from window to window.
.TP 14
.B \-copypixwin10
Copy 10x10 square from pixmap to window.
.TP 14
.B \-copypixwin100
Copy 100x100 square from pixmap to window.
.TP 14
.B \-copypixwin500
Copy 500x500 square from pixmap to window.
.TP 14
.B \-copywinpix10
Copy 10x10 square from window to pixmap.
.TP 14
.B \-copywinpix100
Copy 100x100 square from window to pixmap.
.TP 14
.B \-copywinpix500
Copy 500x500 square from window to pixmap.
.TP 14
.B \-copypixpix10
Copy 10x10 square from pixmap to pixmap.
.TP 14
.B \-copypixpix100
Copy 100x100 square from pixmap to pixmap.
.TP 14
.B \-copypixpix500
Copy 500x500 square from pixmap to pixmap.
.TP 14
.B \-copyplane10
Copy 10x10 1-bit deep plane.
.TP 14
.B \-copyplane100
Copy 100x100 1-bit deep plane.
.TP 14
.B \-copyplane500
Copy 500x500 1-bit deep plane.
.TP 14
.B \-putimage10
PutImage 10x10 square.
.TP 14
.B \-putimage100
PutImage 100x100 square.
.TP 14
.B \-putimage500
PutImage 500x500 square.
.TP 14
.B \-putimagexy10
PutImage XY format 10x10 square.
.TP 14
.B \-putimagexy100
PutImage XY format 100x100 square.
.TP 14
.B \-putimagexy500
PutImage XY format 500x500 square.
.TP 14
.B \-shmput10
PutImage 10x10 square, MIT shared memory extension.
.TP 14
.B \-shmput100
PutImage 100x100 square, MIT shared memory extension.
.TP 14
.B \-shmput500
PutImage 500x500 square, MIT shared memory extension.
.TP 14
.B \-shmputxy10
PutImage XY format 10x10 square, MIT shared memory extension.
.TP 14
.B \-shmputxy100
PutImage XY format 100x100 square, MIT shared memory extension.
.TP 14
.B \-shmputxy500
PutImage XY format 500x500 square, MIT shared memory extension.
.TP 14
.B \-getimage10
GetImage 10x10 square.
.TP 14
.B \-getimage100
GetImage 100x100 square.
.TP 14
.B \-getimage500
GetImage 500x500 square.
.TP 14
.B \-getimagexy10
GetImage XY format 10x10 square.
.TP 14
.B \-getimagexy100
GetImage XY format 100x100 square.
.TP 14
.B \-getimagexy500
GetImage XY format 500x500 square.
.TP 14
.B \-noop
X protocol NoOperation.
.TP 14
.B \-atom
GetAtomName.
.TP 14
.B \-pointer
QueryPointer.
.TP 14
.B \-prop
GetProperty.
.TP 14
.B \-gc
Change graphics context.
.TP 14
.B \-create
Create child window and map using MapSubwindows.
.TP 14
.B \-ucreate
Create unmapped window.
.TP 14
.B \-map
Map child window via MapWindow on parent.
.TP 14
.B \-unmap
Unmap child window via UnmapWindow on parent.
.TP 14
.B \-destroy
Destroy child window via DestroyWindow parent.
.TP 14
.B \-popup
Hide/expose window via Map/Unmap popup window.
.TP 14
.B \-move
Move window.
.TP 14
.B \-umove
Moved unmapped window.
.TP 14
.B \-movetree
Move window via MoveWindow on parent.
.TP 14
.B \-resize
Resize window.
.TP 14
.B \-uresize
Resize unmapped window.
.TP 14
.B \-circulate
Circulate lowest window to top.
.TP 14
.B \-ucirculate
Circulate unmapped window to top.
.SH X DEFAULTS
There are no X defaults used by this program.
.SH "SEE ALSO"
X(__miscmansuffix__), xbench(1), x11perfcomp(1)
.SH AUTHORS
Joel McCormack
.br
Phil Karlton
.br
Susan Angebranndt
.br
Chris Kent
.br
Keith Packard
.br
Graeme Gill