diff options
author | Thomas Hellstrom <[email protected]> | 2017-05-16 07:25:12 -0700 |
---|---|---|
committer | Thomas Hellstrom <[email protected]> | 2017-06-07 19:43:54 +0200 |
commit | b8b0a3dc5cf195cc22317f3aae14399160fdc03e (patch) | |
tree | 0e129c5be5cc6bdce72995940b18c264c1d7d4e0 /src | |
parent | 37e8341db4e9618fcd874c52aca57579f639bfe8 (diff) |
dri/vmwgfx: Disable a couple of glx extensions also for Ubuntu unity / compiz
It appears like the GLX_EXT_buffer_age extension also prevents Compiz /
Ubuntu Unity from performing partial buffer swaps when it otherwise
feels like doing so. So try to get them back again. We also disable
GLX_OML_sync_control since it appears it had a favourable impact on
gnome-shell.
Signed-off-by: Thomas Hellstrom <[email protected]>
Reviewed-by: Sinclair Yeh <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/common/drirc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/common/drirc b/src/mesa/drivers/dri/common/drirc index b6c3c6a5db7..5152b207ebe 100644 --- a/src/mesa/drivers/dri/common/drirc +++ b/src/mesa/drivers/dri/common/drirc @@ -158,5 +158,9 @@ TODO: document the other workarounds. <option name="glx_disable_ext_buffer_age" value="true" /> <option name="glx_disable_oml_sync_control" value="true" /> </application> + <application name="Compiz" executable="Compiz"> + <option name="glx_disable_ext_buffer_age" value="true" /> + <option name="glx_disable_oml_sync_control" value="true" /> + </application> </device> </driconf> |