Theoretically, performance of video output should be only limited by bandwidth of CPU <-> Video bus ( for PCI bus it's 133 Mb/s or 5 ms for drawing of 640x480x16 picture ). Unfortunately, this value is rarely achieved. Actual performance is affected by many factors and can vary from 20 to 150 Mb/s. You can determine this value for your system by running 'benchmark' tool. Type: benchmark and it'll perform quick measurement of most typical timings. In the end, it'll print video output speed in megabytes per second. If the resulting value for your system is higher than 50 Mb/s, then there's nothing for you to worry about, because your X server has some kind of output acceleration. ( Actually, I suspect that most current X servers have it ). In case of this performance being worse than 30 Mb/s, you'll probably need to turn on write-combining for video card. This should generally be done by X server, but some servers ( for example, X server for XFree86 3.3.6 with s3_savage driver ) don't do it ( shame on them ). Here I'll describe how it could be done by hands in case of Linux. 1. Your processor should have MTRR registers ( Pentium Pro, Pentium II or maybe some compatible processors ). Your kernel should be compiled with MTRR support: in kernel configuration menu, select 'Processor type and features' ->'MTRR (Memory Type Range Register) support'. 2. Run X and log its output somewhere: startx >./startx.log 2>&1 Look into the log and find a line similar to this: (--) SVGA: PCI: S3 Savage4 rev 2, Memory @ 0xe5000000, 0xd8000000 Here 0xe5000000 and 0xd8000000 are virtual addresses of your video memory. You'll need one of them. 3. Type as root: echo "base= size=0x800000 type=write-combining" >>/proc/mtrr replacing with address received in step 2 and 0x800000 ( which is equal to 8 Mb ) with size of your video memory. That's it. If you did everything properly, you should notice significant increase in output performance. For me it increased output bandwidth from 20 to 36 Mb/s. In case you chose wrong address from list in step 2, do the following: cat /proc/mtrr Find the line that was added by you. Suppose it starts with "reg02", then type: echo "disable=2" >>/proc/mtrr and repeat case 3 with another address. You can find details about using /proc/mtrr in Linux kernel sources, file Documentation/mtrr.txt.