Hi there, I have the following system<br><br># lspci<br>00:00.0 Host bridge: Intel Corporation 82Q35 Express DRAM Controller (rev 02)<br>00:02.0 VGA compatible controller: Intel Corporation 82Q35 Express Integrated Graphics Controller (rev 02)<br>
00:02.1 Display controller: Intel Corporation 82Q35 Express Integrated Graphics Controller (rev 02)<br>00:03.0 Communication controller: Intel Corporation 82Q35 Express MEI Controller (rev 02)<br>00:03.2 IDE interface: Intel Corporation 82Q35 Express PT IDER Controller (rev 02)<br>
00:03.3 Serial controller: Intel Corporation 82Q35 Express Serial KT Controller (rev 02)<br>00:19.0 Ethernet controller: Intel Corporation 82566DM-2 Gigabit Network Connection (rev 02)<br>00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 02)<br>
00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 02)<br>00:1a.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 02)<br>00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 02)<br>
00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 02)<br>00:1d.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 02)<br>00:1d.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 02)<br>
00:1d.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 02)<br>00:1d.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 02)<br>00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 92)<br>
00:1f.0 ISA bridge: Intel Corporation 82801IO (ICH9DO) LPC Interface Controller (rev 02)<br>00:1f.2 SATA controller: Intel Corporation 82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA AHCI Controller (rev 02)<br>00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 02)<br>
<br><br>$ glxinfo | grep direct<br>Failed to initialize TTM buffer manager.  Falling back to classic.<br>direct rendering: Yes<br><br>$ uname -a<br>Linux localhost 2.6.27-sabayon #1 SMP Sat Dec 20 16:16:56 UTC 2008 i686 Intel(R) Core(TM)2 Duo CPU E6850 @ 3.00GHz GenuineIntel GNU/Linux<br>
<br>$ glxgears<br>Failed to initialize TTM buffer manager.  Falling back to classic.<br>300 frames in 5.0 seconds = 59.884 FPS<br>299 frames in 5.0 seconds = 59.621 FPS<br>300 frames in 5.0 seconds = 59.818 FPS<br><br>And here is my xorg.conf part:<br>
Section "Module"<br>    SubSection  "extmod"<br>       Option    "omit xfree86-dga"<br>    EndSubSection<br>    Load    "i2c"<br>    Load    "ddc"<br>    Load    "vbe"<br>
    Load        "dri"<br>    Load        "glx"<br>EndSection<br><br><br>Section "ServerFlags"<br>     Option     "AllowMouseOpenFail" "true"<br>EndSection<br><br># **********************************************************************<br>
# Monitor section<br># **********************************************************************<br><br><br><br># **********************************************************************<br># Graphics device section<br># **********************************************************************<br>
<br># Any number of graphics device sections may be present<br><br>Section "Device"<br>    Identifier  "VESA"<br>    Driver    "intel"<br>    #Option "RenderAccel" "on"<br>
    #Option "XAANoOffscreenPixmaps"<br>    #Option "BusType" "PCI"<br>    #Option "ColorTiling" "on"<br>    #Option "EnablePageFlip" "on"<br>    Option "UseEvents" "True"<br>
EndSection<br><br><br># **********************************************************************<br># Screen sections.<br># **********************************************************************<br><br>Section "Screen"<br>
<br># The Identifier, Device and Monitor lines must be present<br><br>    Identifier    "Screen 1"<br>    Device    "VESA"<br>    Monitor    "Generic Monitor"<br>    #Option "AddARGBGLXVisuals" "true"<br>
<br># The favoured Depth and/or Bpp may be specified here<br><br>    DefaultDepth 16<br><br>    SubSection "Display"<br>        Depth        8<br>        ViewPort    0 0<br>        Modes "1152x864" "1024x768" "800x600" "640x480"<br>
    EndSubsection<br><br>    SubSection "Display"<br>        Depth           16<br>        ViewPort        0 0<br>        Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"<br>
    EndSubsection<br><br>    SubSection "Display"<br>        Depth           24<br>        ViewPort        0 0<br>        Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"<br>
    EndSubsection<br><br><br>EndSection<br><br><br>Section "ServerLayout"<br># The Identifier line must be present<br><br>    Identifier    "Main Layout"<br>    Screen 0     "Screen 1"<br><br>
EndSection<br><br>Section "DRI"<br>    Mode 0666<br>EndSection<br><br>Section "Extensions"<br>   #Option "Composite" "Enable"<br>EndSection<br><br>What can I do to get reasonable performance? A very old NVIDIA card I used to have 5 years ago could achieve 10000 fps with those old NVIDIA drivers when running glxgears in very old hardware like Pentium4 2.4 GHz and default depth 16. <br>
<br>Cheers,<br>Panos.<br>