<html>
<body>
<div style="font-family: Verdana, Arial, Helvetica, Sans-Serif;">
<table bgcolor="#f9f3c9" width="100%" cellpadding="12" style="border: 1px #c9c399 solid; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
<tr>
<td>
This is an automatically generated e-mail. To reply, visit:
<a href="https://git.reviewboard.kde.org/r/125942/">https://git.reviewboard.kde.org/r/125942/</a>
</td>
</tr>
</table>
<br />
<table bgcolor="#fefadf" width="100%" cellspacing="0" cellpadding="12" style="border: 1px #888a85 solid; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
<tr>
<td>
<div>Review request for kwin, Plasma and Martin Gräßlin.</div>
<div>By Sebastian Kügler.</div>
<p style="color: grey;"><i>Updated Nov. 4, 2015, 12:09 p.m.</i></p>
<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Changes</h1>
<table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
<tr>
<td>
<pre style="margin: 0; padding: 0; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">Addressed all comments.</pre>
</td>
</tr>
</table>
<div style="margin-top: 1.5em;">
<b style="color: #575012; font-size: 10pt;">Repository: </b>
kwayland
</div>
<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Description </h1>
<table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
<tr>
<td>
<pre style="margin: 0; padding: 0; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;"><p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">This implements the client and server part of the screen management protocol. The protocol is implemented as a wayland protocol.</p>
<p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">It provides the following mechanisms:
- a list of outputs, close to wl_output, with additional properties for enabled, uuid, edid, etc.. These OutputDevices correspond to a connected output that can be enabled by the compositor, but is not necessarily currently used for rendering.
- a global OutputManagement, which allows creating config objects, one per client. The client can make changes to the outputs through setScale(outputdevice*, scale) for example.
- an OutputConfiguration resource, that can be handed to a client and used for configuration. Changes are double buffered here. Only after OutputConfiguration.apply() has been called, the changes are relayed over the global OutputManagement.</p>
<p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">The compositor is responsible to handle changes.</p>
<p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">For a more detailed description, see the API docs in especially outputconfiguration.h.</p>
<p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">The working branch for this is kwayland[sebas/kwin]. A backend for libkscreen is available in libkscreen[sebas/wayland].</p></pre>
</td>
</tr>
</table>
<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Testing </h1>
<table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
<tr>
<td>
<pre style="margin: 0; padding: 0; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;"><p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">Unit tests pass.</p></pre>
</td>
</tr>
</table>
<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Diffs</b> (updated)</h1>
<ul style="margin-left: 3em; padding-left: 0;">
<li>autotests/client/CMakeLists.txt <span style="color: grey">(1556c47)</span></li>
<li>autotests/client/test_wayland_outputdevice.cpp <span style="color: grey">(PRE-CREATION)</span></li>
<li>autotests/client/test_wayland_outputmanagement.cpp <span style="color: grey">(PRE-CREATION)</span></li>
<li>autotests/client/test_wayland_registry.cpp <span style="color: grey">(55f0f6c)</span></li>
<li>autotests/server/test_display.cpp <span style="color: grey">(b398812)</span></li>
<li>src/client/CMakeLists.txt <span style="color: grey">(79092ef)</span></li>
<li>src/client/outputconfiguration.h <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/client/outputconfiguration.cpp <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/client/outputdevice.h <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/client/outputdevice.cpp <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/client/outputmanagement.h <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/client/outputmanagement.cpp <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/client/protocols/output-management.xml <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/client/protocols/outputdevice.xml <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/client/registry.h <span style="color: grey">(034e38f)</span></li>
<li>src/client/registry.cpp <span style="color: grey">(1a481c8)</span></li>
<li>src/server/CMakeLists.txt <span style="color: grey">(57eb763)</span></li>
<li>src/server/display.h <span style="color: grey">(0fd1185)</span></li>
<li>src/server/display.cpp <span style="color: grey">(019991a)</span></li>
<li>src/server/outputchangeset.h <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/server/outputchangeset.cpp <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/server/outputchangeset_p.h <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/server/outputconfiguration_interface.h <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/server/outputconfiguration_interface.cpp <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/server/outputdevice_interface.h <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/server/outputdevice_interface.cpp <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/server/outputmanagement_interface.h <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/server/outputmanagement_interface.cpp <span style="color: grey">(PRE-CREATION)</span></li>
<li>src/tools/mapping.txt <span style="color: grey">(d6a4a44)</span></li>
</ul>
<p><a href="https://git.reviewboard.kde.org/r/125942/diff/" style="margin-left: 3em;">View Diff</a></p>
</td>
</tr>
</table>
</div>
</body>
</html>