User Tools

Site Tools


notes:xorg.conf_snippets

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
notes:xorg.conf_snippets [2023/03/28 14:23] Sean Rhonenotes:xorg.conf_snippets [2023/05/17 06:50] Sean Rhone
Line 74: Line 74:
  
 ===== amdgpu ===== ===== amdgpu =====
 +
 +==== Tweaked ====
 +
 +  * https://wiki.archlinux.org/title/AMDGPU#Reduce_output_latency
 +
 +  sudo -e '/etc/X11/xorg.conf.d/99-graphics.conf'
 +
 +<code>
 +Section "OutputClass"
 +    Identifier "AMD Graphics"
 +    MatchDriver "amdgpu"
 +    Driver "amdgpu"
 +    Option "EnablePageFlip" "0"
 +    Option "TearFree" "0"
 +EndSection</code>
 +
 +==== Alternate ====
  
   * 2023/03/28: Last tested on Fedora 37 with a RX 6600 XT   * 2023/03/28: Last tested on Fedora 37 with a RX 6600 XT
Line 88: Line 105:
  
 ===== intel ===== ===== intel =====
 +
 +==== Tweaked ====
 +
 +  * https://wiki.archlinux.org/title/intel_graphics#Disabling_TearFree,_TripleBuffer,_SwapbuffersWait
 +  * 2023/05/17: Last tested on Ubuntu 23.04 with Intel UHD 630
 +
 +  sudo -e '/etc/X11/xorg.conf.d/99-graphics.conf'
 +
 +<code>
 +Section "OutputClass"
 +    Identifier "Intel Graphics"
 +    MatchDriver "i915"
 +    Driver "intel"
 +    Option "DRI" "iris"
 +    Option "TearFree" "0"
 +    Option "TripleBuffer" "0"
 +    Option "SwapbuffersWait" "0"
 +EndSection
 +</code>
 +
 +==== Alternate ====
  
   * 2023/03/21: Last tested on Fedora 37 with Intel UHD 630   * 2023/03/21: Last tested on Fedora 37 with Intel UHD 630
/var/www/wiki/data/pages/notes/xorg.conf_snippets.txt · Last modified: 2024/05/02 03:12 by Sean Rhone