<table><tr><td style="">davidedmundson created this revision.<br />davidedmundson added a reviewer: KWin.<br />Herald added a project: KWin.<br />Herald added a subscriber: kwin.<br />davidedmundson requested review of this revision.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D24215">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>EffectQuickView/Scene is a convenient class to render a QtQuick<br />
scenegraph into an effect.</p>

<p>Current methods (such as present windows) involve creating an underlying<br />
platform window which is expensive, causes a headache to filter out<br />
again in the rest of the code, and only works as an overlay.</p>

<p>The new class exposes things more natively to an effect where we don't<br />
mess with real windows, we can perform the painting anywhere in the view<br />
and we don't have issues with hiding/closing.</p>

<p>QtQuick has both software and hardware accelerated modes, and kwin also<br />
has 3 render backends. Every combination is supported.</p>

<ul class="remarkup-list">
<li class="remarkup-list-item">When used in OpenGL mode for both, we render into an FBO export the</li>
</ul>

<p>texture ID then it's up to the effect to render that into a scene.</p>

<ul class="remarkup-list">
<li class="remarkup-list-item">When using software QtQuick rendering we blit into an image, upload</li>
</ul>

<p>that into a KWinGLTexture which serves as an abstraction layer and<br />
render that into the scene.</p>

<ul class="remarkup-list">
<li class="remarkup-list-item">When using GL for QtQuick and XRender/QPainter in kwin everything is</li>
</ul>

<p>rendered into the internal FBO, blit and exported as an image.</p>

<ul class="remarkup-list">
<li class="remarkup-list-item">When using software rendering for both an image gets passed directly.</li>
</ul>

<p>Mouse and keyboard events can be forwarded, only if the effect<br />
intercepts them.</p>

<p>The class is meant to be generic enough that we can remove all the<br />
QtQuick code from Aurorae.</p>

<p>The intention is also to replace EffectFrameImpl using this backend and<br />
we can kill all of the EffectFrame code throughout the scenes.</p>

<p>The close button in present windows will also be ported to this,<br />
simplifiying that code base.</p>

<p>Classes that handle the rendering and handling QML are intentionally<br />
split so that in the future we can have a declarative effects API create<br />
overlays from within the same context. Similar to how one can<br />
instantiate windows from a typical QML scene.</p>

<p>Notes:<br />
I don't like how I pass the kwin GL context from the backends into the<br />
effect, but I need something that works with the library separation. It<br />
also currently has wayland problem if I create a QOpenGLContext before<br />
the QPA is set up with a scene - but I don't have anything better?</p>

<p>I know for the EffectFrame we need an API to push things through the<br />
effects stack to handle blur/invert etc. Will deal with that when we<br />
port the EffectFrame.</p></div></div><br /><div><strong>TEST PLAN</strong><div><p>Used in an effect</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R108 KWin</div></div></div><br /><div><strong>BRANCH</strong><div><div>effectview_new</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D24215">https://phabricator.kde.org/D24215</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>autotests/mock_effectshandler.h<br />
effects.cpp<br />
effects.h<br />
libkwineffects/CMakeLists.txt<br />
libkwineffects/kwineffectquickview.cpp<br />
libkwineffects/kwineffectquickview.h<br />
libkwineffects/kwineffects.h<br />
platformsupport/scenes/opengl/abstract_egl_backend.cpp<br />
plugins/platforms/x11/standalone/CMakeLists.txt<br />
plugins/platforms/x11/standalone/glxbackend.cpp<br />
plugins/scenes/opengl/scene_opengl.cpp<br />
plugins/scenes/opengl/scene_opengl.h<br />
plugins/scenes/qpainter/scene_qpainter.cpp<br />
plugins/scenes/qpainter/scene_qpainter.h<br />
plugins/scenes/xrender/scene_xrender.cpp<br />
plugins/scenes/xrender/scene_xrender.h<br />
scene.h</div></div></div><br /><div><strong>To: </strong>davidedmundson, KWin<br /><strong>Cc: </strong>kwin, LeGast00n, The-Feren-OS-Dev, sbergeron, jraleigh, fbampaloukas, GB_2, mkulinski, ragreen, jackyalcine, iodelay, crozbo, bwowk, ZrenBot, ngraham, alexeymin, himcesjf, lesliezhai, ali-mohamed, hardening, romangg, jensreuterberg, abetts, sebas, apol, mart<br /></div>