Yes, hardware acceleration should be active by default. I have the same graphic card in my Dell Laptop and works out of the box for me. Test in the xorg.conf file which driver you're using. Because it exists two, the
i810 and the
intel one. I thought I remember 'intel' was newer, but still has some issues. Do:
- Code: Select all
cat /etc/X11/xorg.conf | grep Driver
And it would show you a list of drivers used in the xorg.conf file. Check wether in one of the lines shows you 'i810' or 'intel'. If it shows you 'i810', I have had no problem with it, but if you still want to give a try to 'intel' follow these steps:
- Code: Select all
sudo gedit /etc/X11/xorg.conf
find the
- Code: Select all
Section "Device"
(...)
Driver "i810"
And where you see 'i810' change it to 'intel' or change 'intel' to 'i810', the case you have. Save. Make sure quit all programs and press Ctrl + Alt + Backspace. The Desktop will restart, login again, try Google Earth. And see if you have now hardware acceleration.
Other issue might be that you don't have the 'glx' module loaded in the xorg.conf 'Module' section. In my case it's at the end of the xorg.conf file:
- Code: Select all
Section "Module"
Load "glx"
EndSection