Details
| Manufacturer | C.P. Technology (by ATI Technologies) |
|---|---|
| Model | CN-AG92E |
| Bus | pci |
| Type | VGA compatible controller |
| Id | 1002 |
| Info2 | 5964 |
| Info3 | 148c |
| Info4 | 2073 |
| Manufacturer | C.P. Technology (by ATI Technologies) |
|---|---|
| Model | CN-AG92E |
| Bus | pci |
| Type | VGA compatible controller |
| Id | 1002 |
| Info2 | 5964 |
| Info3 | 148c |
| Info4 | 2073 |
Overall rating: 4.0 x 10
By Linux distribution:
Comments
Works without any problems
Works well with the OpenSource driver… Tested with OpenArena
X.org driver module “ati” version 6.6.3 compiled for Xorg 7.2.0.
FPS still lacking as of 14.01.2008 using the X.org driver module “ati” version 6.6.3 compiled for X.org 7.2.0. Runs AMD64-compiled Tremulous 1.1.0 (Quake 3 engine) at approximately 67 FPS using default settings.
Uses the “radeon” driver.
The hardware works OK.
As of the xorg-x11-drv-ati-6.8.0–1.fc8 RPM, the radeon driver is incompatible with the X zoom keys (ctrl+alt+plus/minus) and xvidtune X utility. See Fedora 8 bug https://bugzilla.redhat.com/show_bug.cgi?id=415231
You can circumvent the problem by using the xrandr utility instead of the xvidtune utility. However, xrandr is much, much slower than xvidtune, and I could not find a way to keep the virtual screen size constant (i.e. a “pan and scan” desktop). If you use KDE, you can define the keypad plus/minus keys to run xrandr, as follows:
Create an xrandr script, e.g. /opt/bin/415231.sh .
Connect the shortcuts to the script:
Control Center > Regional & Accessibility > Input Actions
New Group
name it Plus Action Group
make no entry on the Conditions tab
ensure that Plus Action Group is selected in the Actions list
New Action
name it Bug 415231 (X Zoom) circumvention for ctrl+alt+plus
type Keyboard Shortcut -> Command/URL (simple)
set the keystroke to “KP_Add”
set the command ”/opt/bin/415231.sh plus”
Then create another group for the “KP_Minus” key.
Example of /opt/bin/415231.sh :
#!/bin/zsh
# Circumvention for bug 415231 X Zoom (ctrl+alt+plus/minus) keys don’t work
# with radeon driver. Also, xvidtune doesn’t work, either.
# To use this, you need to turn on the “DontZoom” system flag in /etc/X11/xorg.conf
# and assign running this program, with the “plus” or “minus” keyword,
# to the ctrl+alt+plus and ctrl+alt+minus keys, in KDE Control Center’s
# Input Actions subsection of the Regional & Accessibility section.
#
# This thing has three problems:
# – it is quite slow (the xrandr -q is slow, and xrandr—mode is very slow)
# – it resizes the virtual desktop, often causing windows to resize
# – therefore, can’t get just the body of a window into view.
#
# This script requires zsh, in order to be able to pipe things into a
# read, and get variables visible to the script, to be set.
#
declare -i Lincrement=0
case $1
in
plus) Lincrement=1
;;
minus) Lincrement=-1
;;
*) logger -is -p user.err -t Bug415231 ”$0 Invalid keyword ’$1’”
;;
esac
xrandr -q|fgrep ”*”|read cres junk
cres=’”’$cres’”’
declare -a Lmodes
egrep ”^[[:space:]]*Modes[[:space:]]” /etc/X11/xorg.conf|read -A Lmodes
declare -i Li=${#Lmodes}
for (( ; Li>=2 ; Li+=-1 ))
do
if [ ”$Lmodes[$Li]” = ”$cres” ]; then
##echo ,$Li,$Lmodes[$Li],
break
fi
done
if [ $Li -lt 2 ]; then
logger -is -p user.err -t Bug415231 ”$0 cres ’$cres’ not matched to Lmodes ’$Lmodes[@]’”
nres=$cres
else
# Then get the next/prev. entry:
Li+=Lincrement
if [ $Li -lt 2 ]; then
Li=${#Lmodes}
elif [ $Li -gt ${#Lmodes} ]; then
Li=2
fi
nres=”$Lmodes[$Li]”
fi
eval xrandr—output DVI-0—mode $nres
exit $?
I don’t think I use 3D games. Not sure how to tell.