Quote:
What it really helped were those 2 options. What's are they? The glxgears test increased performance from 330 fps to 450 fps! From 75 to 110 fps at full screen

Option "EnablePageFlip" "true" - this enables hardware page flipping. Otherwise to update the display basically X does a blit - significantly slower to copy the framebuffer to another position, than to just say "now use this address".
Option "BackingStore" "true" - this lets the server remember occlusion on windows, so it doesn't need to send events to the client in order to redraw uncovered portions of windows (basically when you drag a window over another, it saves what was underneath, and when you drag back away, it puts it back. This is a lot quicker than doing several roundtrips over the X protocol)
Neko