You are not logged in.
I run a setup with Bumblebee, and experience quite a lot of tearing in normal desktop use (using the Intel GPU), which I tried to fix using the TearFree option. However, after creating
~ % cat /etc/X11/xorg.conf.d/12-intel.conf
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "TearFree" "True"
EndSectionand rebooting, I get the following in Xorg.0.log:
[...]
[ 4.195] (==) intel(0): TearFree disabled
[...]Does anyone know what might be causing this behaviour?
Last edited by daanjderuiter (2017-10-01 13:13:31)
Offline
According to
man xorg.confboolean option values should be lowercase. https://wiki.archlinux.org/index.php/In … free_video also uses lowercase.
Offline
Changed it, but the option still gets disabled. I tried putting it both in /etc/bumblebee/xorg.conf.d and in /etc/X11/xorg.conf.d, with identical results.
Offline
How do you start X? can you post a full xorg log?
Offline
I start X using LightDM, here is my Xorg.0.log file. The other Xorg.#.logs have similar lines
Offline
[ 4.046] (**) intel(0): Option "Backlight" "intel_backlight"Since this is not in your posted snippet, please paste all /etc/X11/xorg.conf.d/* (or check them yourselfs for a contender)
Offline
Apologies, here are all of the conf-files. Sorry for the inconsistent use of tabs and spaces, by the way ![]()
Last edited by daanjderuiter (2017-10-01 09:05:27)
Offline
Try to add it to 11-backlight.conf and see what happens.
Offline
That did the trick, thanks! So, X doesn't like me giving different Identifiers to the same device in two different configs
Offline
Welp, it still is not quite sorted. TearFree is enabled but then disabled for some reason:
~ % grep -i Tear -H /var/log/Xorg.*.log
/var/log/Xorg.0.log:[ 4.115] (**) intel(0): Option "TearFree" "true"
/var/log/Xorg.0.log:[ 4.116] (**) intel(0): TearFree enabled
/var/log/Xorg.1.log:[ 8395.345] (**) intel(0): Option "TearFree" "true"
/var/log/Xorg.1.log:[ 8395.346] (**) intel(0): TearFree enabled
/var/log/Xorg.2.log:[ 13185.115] (==) intel(0): TearFree disabled
/var/log/Xorg.3.log:[291080.180] (==) intel(0): TearFree disabledHere are also my Xorg.2.log and Xorg.3.log, since that's where TearFree is reported to be disabled.
Offline
One of them is quite old, the other could be from a bumblebee invocation or similar, check with xrandr which xorg session is assigned to your adapter/card, which is usually 0 which means that it would be enabled.
Offline
Actually both logs predate comment #8, so not much of a surprise here.
I'll take the opportunity to elaborate on the exisinting config files.
You're indeed right that you cannot have two Device IDs for the same piece of HW, resp. only one is used (and the backlight is first and even better (card0, though i'm not sure whether the intel driver cares) match .
Offline