<table><tr><td style="">zzag added a comment.<br />Restricted Application edited projects, added Plasma; removed KWin.
</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/D9638" rel="noreferrer">View Revision</a></tr></table><br /><div><div><blockquote style="border-left: 3px solid #8C98B8;
          color: #6B748C;
          font-style: italic;
          margin: 4px 0 12px 0;
          padding: 8px 12px;
          background-color: #F8F9FC;">
<div style="font-style: normal;
          padding-bottom: 4px;">In <a href="https://phabricator.kde.org/D9638#195979" style="background-color: #e7e7e7;
          border-color: #e7e7e7;
          border-radius: 3px;
          padding: 0 4px;
          font-weight: bold;
          color: black;text-decoration: none;" rel="noreferrer">D9638#195979</a>, <a href="https://phabricator.kde.org/p/graesslin/" style="
              border-color: #f1f7ff;
              color: #19558d;
              background-color: #f1f7ff;
                border: 1px solid transparent;
                border-radius: 3px;
                font-weight: bold;
                padding: 0 4px;" rel="noreferrer">@graesslin</a> wrote:</div>
<div style="margin: 0;
          padding: 0;
          border: 0;
          color: rgb(107, 116, 140);"><p>What you could try is using the PaintClipper to perform clipping. But I don't know whether it's still fully functional on OpenGL.</p></div>
</blockquote>

<p>So, adding</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">PaintClipper pc(QRegion(
  QPoint(0, 0),
  effects->virtualScreenSize()
));</pre></div>

<p>in <tt style="background: #ebebeb; font-size: 13px;">SlideEffect::paintScreen</tt> would be enough? Doesn't KWin do something like that somewhere else? I've just realized, maybe, this effect doesn't need to clip...</p>

<hr class="remarkup-hr" />

<p>Also, I've noticed that there is no blur behind docks when docks are painted above all windows(<tt style="background: #ebebeb; font-size: 13px;">Slide docks</tt> checkbox is unchecked).</p>

<p><a href="https://phabricator.kde.org/F5674581" style="background-color: #e7e7e7;
          border-color: #e7e7e7;
          border-radius: 3px;
          padding: 0 4px;
          font-weight: bold;
          color: black;text-decoration: none;" rel="noreferrer">F5674581: 2018-01-25 17-55-02.mp4</a></p>

<p>Effect chain positions:</p>

<ul class="remarkup-list">
<li class="remarkup-list-item">slide effect: 50</li>
<li class="remarkup-list-item">blur: 75</li>
<li class="remarkup-list-item">background contrast: 76</li>
</ul>

<p>Docks are drawn above all windows by the following code:</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">for (EffectWindow* w : windows) {
    if (! w->isDock()) {
        continue;
    }
    WindowPaintData dockData(w);
    int dockMask = mask
        | (w->hasAlpha() ? PAINT_WINDOW_TRANSLUCENT
                         : PAINT_WINDOW_OPAQUE);
    effects->drawWindow(w, dockMask, infiniteRegion(), dockData);
}</pre></div>

<p>(<tt style="background: #ebebeb; font-size: 13px;">WindowForceBackgroundContrastRole</tt> and <tt style="background: #ebebeb; font-size: 13px;">WindowForceBlurRole</tt> are set at the beginning of the slide animation)</p>

<p>Am I missing something?</p>

<hr class="remarkup-hr" />

<p>Quick side note: when the <tt style="background: #ebebeb; font-size: 13px;">Slide docks</tt> checkbox is unchecked, docks are drawn above other windows so they can properly animate themselves if an user enters or leaves a virtual desktop with a window in full screen mode.</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R108 KWin</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D9638" rel="noreferrer">https://phabricator.kde.org/D9638</a></div></div><br /><div><strong>To: </strong>zzag, VDG, KWin, Plasma<br /><strong>Cc: </strong>mart, graesslin, abetts, ngraham, plasma-devel, kwin, ZrenBot, progwolff, lesliezhai, ali-mohamed, jensreuterberg, sebas, apol<br /></div>