Skip to content

Instantly share code, notes, and snippets.

@yoyo308
Last active January 3, 2016 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoyo308/8446937 to your computer and use it in GitHub Desktop.
Save yoyo308/8446937 to your computer and use it in GitHub Desktop.
Los 3 métodos de aceleración gráfica en tarjetas Intel: uxa, sna y glamor. En KaOS el método por defecto es sna sin necesidad de tener un archivo que lo indique Para cambiar de método de aceleración crear el archivo 20-intel.conf en /etc/X11/xorg.conf.d/
## Método sna:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "sna"
EndSection
## Método uxa:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "uxa"
EndSection
## Metodo glamor:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "glamor"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment