Last active
January 3, 2016 10:08
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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