EXA(4) Kernel Interfaces Manual EXA(4)NAME
exa - new 2D acceleration architecture for X.Org
DESCRIPTION
EXA provides a simple API for video drivers to implement for 2D acceleration. It is a module loaded by drivers, and is not intended to be
loaded on its own. See your driver's manual page for how to enable EXA.
The EXA architecture is designed to make accelerating the Render extension simple and efficient, and results in various performance trade-
offs compared to XAA. Some xorg.conf options are available for debugging performance issues or driver rendering problems. They are not
intended for general use.
Option "EXANoComposite" "boolean"
Disables acceleration of the Composite operation, which is at the heart of the Render extension. Not related to the Composite
extension. Default: No.
Option "EXANoUploadToScreen" "boolean"
Disables acceleration of uploading pixmap data to the framebuffer. Default: No.
Option "EXANoDownloadFromScreen" "boolean"
Disables acceleration of downloading of pixmap data from the framebuffer. NOTE: Not usable with drivers which rely on DownloadFrom-
Screen succeeding. Default: No.
Option "MigrationHeuristic" "anystr"
Chooses an alternate pixmap migration heuristic, for debugging purposes. The default is intended to be the best performing one for
general use, though others may help with specific use cases. Available options include "always", "greedy", and "smart". Default:
always.
SEE ALSO Xorg(1), xorg.conf(5).
AUTHORS
Authors include: Keith Packard, Eric Anholt, Zack Rusin, and Michel Danzer
X Version 11 xorg-server 1.12.4 EXA(4)
Check Out this Related Man Page
EXA(4) Kernel Interfaces Manual EXA(4)NAME
exa - new 2D acceleration architecture for X.Org
DESCRIPTION
EXA provides a simple API for video drivers to implement for 2D acceleration. It is a module loaded by drivers, and is not intended to be
loaded on its own. See your driver's manual page for how to enable EXA.
The EXA architecture is designed to make accelerating the Render extension simple and efficient, and results in various performance trade-
offs compared to XAA. Some xorg.conf options are available for debugging performance issues or driver rendering problems. They are not
intended for general use.
Option "EXANoComposite" "boolean"
Disables acceleration of the Composite operation, which is at the heart of the Render extension. Not related to the Composite
extension. Default: No.
Option "EXANoUploadToScreen" "boolean"
Disables acceleration of uploading pixmap data to the framebuffer. Default: No.
Option "EXANoDownloadFromScreen" "boolean"
Disables acceleration of downloading of pixmap data from the framebuffer. NOTE: Not usable with drivers which rely on DownloadFrom-
Screen succeeding. Default: No.
Option "MigrationHeuristic" "anystr"
Chooses an alternate pixmap migration heuristic, for debugging purposes. The default is intended to be the best performing one for
general use, though others may help with specific use cases. Available options include "always", "greedy", and "smart". Default:
always.
SEE ALSO Xorg(1), xorg.conf(5).
AUTHORS
Authors include: Keith Packard, Eric Anholt, Zack Rusin, and Michel Danzer
X Version 11 xorg-server 1.8.0 EXA(4)
I have followed instructions to get the jdk for sparc, 1.3 loaded on this sparc workstation machine. I used a tar file and everything seemed to go fine. The usr/j2se directory was created with all the subdirectories and java files. However, attempting to run Java commands fails with a file not... (18 Replies)
Hi,
I have sentences like this:
$sent=
Protein modeling studies reveal that the RG-rich region is part of a three to four strand antiparallel beta-sheet, which in other RNA binding protein functions as a platform for nucleic acid interactions.
Heterogeneous nuclear ribonucleoparticle... (19 Replies)
I have the following data from a manual database dump. I need to format the columns so that I can import them into an excel spread sheet. So far I have been able to get past the hurdles with vi and grep. Now I have one last issue that I can't get past. Here is an example of the data.
Here is... (18 Replies)
ok, apparently this is a very difficult question to answer based on my searches on google that came up fruitless.
what i want to do is grep through a file for words that match a specified string.
but the thing is, i keep getting all words in the file that have the string in them.
say for... (27 Replies)
Hi All,
I need to search in a csv file as mentioend in the Appendix A for a exact word lets "TEST".
But using teh below command iam getting TEST1234, TEST12 and otehr entries as well.
the problem is i check this condition to check to add a record to a table by making sure it does not... (16 Replies)
HI experts
I updated my question here to
eg:
$cat file
ABC: abc ABC FDFD
USB: usb usb_name usb_disk usbdriver USB
PA: PA pa paa
I want to how many usb exactly matched(not match usb_name or usbdriver) in the line cotains"USB:"
thanks in advance (19 Replies)
Hi All
I am new to this forum and also regex.
I am using bash scripting and have a file like this
"0012","efgh","12345678","adfdf", "36598745"
"87654321","hijk","lmno"
I want the ouput to be
12345678
36598745
87654321
Criteria like this
- number
- 8 carachters long
Please let... (21 Replies)
How can I convert hexadecimal values to Binary from the second field to the end
Input:
WS-2 23 345 235
DT-3 45 4A3 000
pp-2 76 300 E4
Output:
WS-2 100011 1101000101 1000110101
DT-3 1000101 10010100011 000
pp-2 1110110 1100000000 11100100 (16 Replies)
Dear all, could you help me with following question. There are two datasets (below). I need to find match between BP values from data1 and data2, and add corresponding CM value from data2 into data1. if there is not exact match, the corresponding CM value should be calculated using interpolation.... (20 Replies)
Dear all,
I am trying to write c-program to read the following file containing hexadecimal values (snippet of big data file).
I want to combine two hexadecimal values together like A0A03E01 and then would like to have the binary equivalent to perform further test on it. Unfortunately, it failed... (16 Replies)
Hi All,
My Input file contains a 1000’s of lines in which I have to replace a
a string to the other. Here the problem is, I have the lines in my Input as below.
Cable Yes && !Pay TV && !ADS
\noUE \Label="Cable Yes && !Pay TV && !ADS"
I want to replace exactly the string Cable Yes &&... (37 Replies)
I have a file change.sed
more change.sed
I fire the below command inorder to replace "190.169.11.15" with "10.4.112.240" in proxy.logsed -f change.sed proxy.log proxy.log has the below entry
more proxy.log
The command replaces both 190.169.11.15 & 190.169.11.155 as below:
I am expecting... (17 Replies)