
Originally Posted by
cinamax
Could you post your xorg.conf file ? I've been trying for a couple of days to get this to work. Did you install latest ATI drivers or the radeonhd ones that came with distro?
I am using fglrx 8-3.
This conf may not be ideal as I've been playing around trying things I've read. I seem to have managed to mess up etqw (not with compiz) so when 8-4 comes out I will likely uninstall fglrx and rm -r /etc/ati/ and start with a clean config.
I am using seamonkey and a recentish git build of compiz-fusion against xorg 7.2 alone on a lfs partition which may one day get finished - for now just testing. Scrolling, while not laggy does eat some CPU running 1280x1024. Cube is lagless and fast.
I don't know how distros start compiz and you would probably be best not to mess with it - but I do it with a .xinitrc as below. Note the export maybe that helps - maybe not.
.xinitrc
Code:
xgamma -gamma 1.4
export LIBGL_ALWAYS_INDIRECT=1
xterm -sb -rightbar -g 80x40+0+0 &
xterm -sb -rightbar -g 80x40+1290+0 &
dbus-launch --exit-with-session compiz --replace --indirect-rendering --sm-disable ccp &
emerald --replace
xorg.conf
Code:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "aticonfig-Screen[0]" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/X11/modules"
FontPath "/usr/lib/X11/fonts/misc/"
FontPath "/usr/lib/X11/fonts/TTF/"
FontPath "/usr/lib/X11/fonts/OTF"
FontPath "/usr/lib/X11/fonts/Type1/"
FontPath "/usr/lib/X11/fonts/100dpi/"
FontPath "/usr/lib/X11/fonts/75dpi/"
EndSection
Section "Module"
Load "extmod"
Load "record"
Load "dbe"
Load "glx"
Load "GLcore"
Load "xtrap"
Load "dri"
Load "freetype"
Load "type1"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "gb"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]"
Driver "fglrx"
Option "XAANoOffscreenPixmaps" "true"
Option "TexturedVideo" "on"
Option "TexturedVideoSync" "on"
Option "VideoOverlay" "off"
Option "OpenGLOverlay" "off"
Option "Textured2D" "on"
Option "TexturedXrender" "on"
Option "BackingStore" "on"
Option "UseFastTLS" "0"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]"
Device "aticonfig-Device[0]"
Monitor "aticonfig-Monitor[0]"
DefaultDepth 24
SubSection "Display"
# Modes "1024x768"
# Modes "1920x1200"
Viewport 0 0
Depth 24
Modes "1280x1024"
EndSubSection
EndSection
Section "DRI"
Group "video"
Mode 0660
EndSection
Section "Extensions"
Option "RENDER" "Enable"
Option "DAMAGE" "Enable"
Option "Composite" "Enable"
EndSection