kwin/libkwineffects
Vlad Zahorodnii b8a70e62d5 Introduce RenderLoop
At the moment, our frame scheduling infrastructure is still heavily
based on Xinerama-style rendering. Specifically, we assume that painting
is driven by a single timer, etc.

This change introduces a new type - RenderLoop. Its main purpose is to
drive compositing on a specific output, or in case of X11, on the
overlay window.

With RenderLoop, compositing is synchronized to vblank events. It
exposes the last and the next estimated presentation timestamp. The
expected presentation timestamp can be used by effects to ensure that
animations are synchronized with the upcoming vblank event.

On Wayland, every outputs has its own render loop. On X11, per screen
rendering is not possible, therefore the platform exposes the render
loop for the overlay window. Ideally, the Scene has to expose the
RenderLoop, but as the first step towards better compositing scheduling
it's good as is for the time being.

The RenderLoop tries to minimize the latency by delaying compositing as
close as possible to the next vblank event. One tricky thing about it is
that if compositing is too close to the next vblank event, animations
may become a little bit choppy. However, increasing the latency reduces
the choppiness.

Given that, there is no any "silver bullet" solution for the choppiness
issue, a new option has been added in the Compositing KCM to specify the
amount of latency. By default, it's "Medium," but if a user is not
satisfied with the upstream default, they can tweak it.
2021-01-06 16:59:29 +00:00
..
anidata.cpp Provide expected presentation time to effects 2020-12-10 07:14:42 +00:00
anidata_p.h Provide expected presentation time to effects 2020-12-10 07:14:42 +00:00
CMakeLists.txt Bump libkwineffects so version 2021-01-05 14:14:28 +00:00
kwinanimationeffect.cpp Provide expected presentation time to effects 2020-12-10 07:14:42 +00:00
kwinanimationeffect.h Provide expected presentation time to effects 2020-12-10 07:14:42 +00:00
kwinconfig.h.cmake Trim trailing whitespace 2020-11-28 11:01:47 +00:00
kwineffectquickview.cpp Add emit to signal calls 2020-11-19 22:32:08 +01:00
kwineffectquickview.h Prettify license headers 2020-08-07 19:57:56 +00:00
kwineffects.cpp Provide expected presentation time to effects 2020-12-10 07:14:42 +00:00
kwineffects.h Provide expected presentation time to effects 2020-12-10 07:14:42 +00:00
KWinEffectsConfig.cmake.in libkwineffects: Specify more dependencies 2020-10-14 13:03:57 +00:00
kwineglimagetexture.cpp Use namespace kwin only in autotests 2020-08-21 22:06:36 +00:00
kwineglimagetexture.h Prettify license headers 2020-08-07 19:57:56 +00:00
kwinglobals.h Introduce RenderLoop 2021-01-06 16:59:29 +00:00
kwinglplatform.cpp Detect softpipe and llvmpipe on Mesa 20.2+ 2020-10-19 14:53:38 +00:00
kwinglplatform.h Prettify license headers 2020-08-07 19:57:56 +00:00
kwingltexture.cpp If include is define in .h remove it if it's defined in .cpp too (scripted) 2020-10-23 21:37:16 +02:00
kwingltexture.h Prettify license headers 2020-08-07 19:57:56 +00:00
kwingltexture_p.h Prettify license headers 2020-08-07 19:57:56 +00:00
kwinglutils.cpp Remove unnecessary allocation in GLShader::setUniform(int, const QMatrix4x4 &) 2020-09-23 10:05:29 +00:00
kwinglutils.h Prettify license headers 2020-08-07 19:57:56 +00:00
kwinglutils_funcs.cpp Prettify license headers 2020-08-07 19:57:56 +00:00
kwinglutils_funcs.h Prettify license headers 2020-08-07 19:57:56 +00:00
kwinxrenderutils.cpp Prettify license headers 2020-08-07 19:57:56 +00:00
kwinxrenderutils.h Prettify license headers 2020-08-07 19:57:56 +00:00
logging.cpp Prettify license headers 2020-08-07 19:57:56 +00:00
logging_p.h Prettify license headers 2020-08-07 19:57:56 +00:00
Mainpage.dox
Messages.sh