Initial commit
[xorg_rtime.git] / xorg-server-1.4 / hw / xfree86 / exa / exa.man.pre
blobb0eecd5ccb209b870dc6dba08196f1f46363f19e
1 .\" shorthand for double quote that works everywhere.
2 .ds q \N'34'
3 .TH EXA __drivermansuffix__ __vendorversion__
4 .SH NAME
5 exa \- new 2D acceleration architecture for X.Org
6 .SH DESCRIPTION
7 .B EXA
8 provides a simple API for video drivers to implement for 2D acceleration.  It
9 is a module loaded by drivers, and is not intended to be loaded on its own.  See
10 your driver's manual page for how to enable 
11 .B EXA
13 .PP
14 The
15 .B EXA
16 architecture is designed to make accelerating the Render extension simple and
17 efficient, and results in various performance tradeoffs compared to XAA.  Some
18 options are available for debugging performance issues or driver rendering
19 problems.  They are not intended for general use.
20 .TP
21 .BI "Option \*qEXANoComposite\*q \*q" boolean \*q
22 Disables acceleration of the Composite operation, which is at the heart of
23 the Render extension.  Not related to the Composite extension.  Default: No.
24 .TP
25 .BI "Option \*qEXANoUploadToScreen\*q \*q" boolean \*q
26 Disables acceleration of uploading pixmap data to the freamebuffer. Default: No.
27 .TP
28 .BI "Option \*qEXANoDownloadFromScreen\*q \*q" boolean \*q
29 Disables acceleration of downloading of pixmap data from the framebuffer. 
30 .B NOTE:
31 Not usable with drivers which rely on DownloadFromScreen succeeding.
32 Default: No.
33 .TP
34 .BI "Option \*qMigrationHeuristic\*q \*q" anystr \*q
35 Chooses an alternate pixmap migration heuristic, for debugging purposes.  The
36 default is intended to be the best performing one for general use, though others
37 may help with specific use cases.  Available options include \*qalways\*q,
38 \*qgreedy\*q, and \*qsmart\*q.  Default: always.
39 .SH AUTHORS
40 Authors include: Keith Packard, Eric Anholt, Zack Rusin, and Michel Dänzer