loader/dri3: Enable adaptive_sync via _VARIABLE_REFRESH property
authorNicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Tue, 23 Oct 2018 15:38:51 +0000 (11:38 -0400)
committerMichel Dänzer <michel@daenzer.net>
Fri, 28 Dec 2018 15:44:47 +0000 (16:44 +0100)
commit2e12fe425fe35d2c72ce0dbffa826f0098fdac2e
tree9b759b8a5a0f305a2a77835021cbe87e92f0ce67
parenta9c36dbf9c56b0d8b3810f7c95d44202bf79dac7
loader/dri3: Enable adaptive_sync via _VARIABLE_REFRESH property

The DDX driver can be notified of adaptive sync suitability by
flagging the application's window with the _VARIABLE_REFRESH property.

This property is set on the first swap the application performs
when adaptive_sync is set to true in the drirc.

It's performed here instead of when the loader is initialized for
two reasons:

(1) The window's drawable can be missing during loader init.
    This can be observed during the Unigine Superposition benchmark.

(2) Adaptive sync will only be enabled closer to when the application
    actually begins rendering.

If adaptive_sync is false then the _VARIABLE_REFRESH property
is deleted on loader init.

The property is only managed on the glx DRI3 backend for now. This
should cover most common applications and games on modern hardware.

Vulkan support can be implemented in a similar manner but would likely
require splitting the function out into a common helper function.

Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Signed-off-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
src/loader/loader_dri3_helper.c
src/loader/loader_dri3_helper.h