summaryrefslogtreecommitdiff
path: root/Events/XDC2014/Program.mdwn
diff options
context:
space:
mode:
authormperes <mperes@web>2014-09-13 02:47:17 -0700
committerxorg <iki-xorg@freedesktop.org>2014-09-13 02:47:17 -0700
commit8316d84d26dab18690a0e99cd9a4850748b376a2 (patch)
tree30304078cc44e62c317a9fcafb369c1a0e7fcc56 /Events/XDC2014/Program.mdwn
parent9266122e6578dd9ffbbf1c6414db540468d38b55 (diff)
add Martin Gräßlin's talk
Diffstat (limited to 'Events/XDC2014/Program.mdwn')
-rw-r--r--Events/XDC2014/Program.mdwn10
1 files changed, 10 insertions, 0 deletions
diff --git a/Events/XDC2014/Program.mdwn b/Events/XDC2014/Program.mdwn
index dfa5e499..d94dddf2 100644
--- a/Events/XDC2014/Program.mdwn
+++ b/Events/XDC2014/Program.mdwn
@@ -394,3 +394,13 @@ Xephyr integration, how Glamor uses various GL and GLES versions and
plans for future Glamor work.
Author: Keith Packard, Intel Open Source Technology Center, keithp@keithp.com
+
+### KWin went XCB
+
+Over the last two years KWin and other components of the Plasma workspace and the KDE Frameworks were ported from XLib to XCB. This transition was triggered by the fact that Qt 5 uses XCB for the event handling. Thus all code processing XLib events had to be ported to be usable with Qt 5.
+
+This talk will explain why we did a complete transition to XCB in KWin and the state of the porting. The talk will highlight the issues we hit during the porting and also what we really liked about XCB in comparison to XLib.
+
+As a C++ application using a low level C library is not particularly thrilling to the developers especially as it can be error-prone. The KWin development team went a long way to make using XCB inside the code base as convenient as possible and safe using advanced features of C++ like RAII and variadic templates. The talk will explain why we introduced wrappers for XCB and illustrates the advantages from a coding point of view. As these wrappers do not dependent on other parts of KWin and are mostly template based header only implementations they might be of interest for other C++ projects interacting with XCB.
+
+Author: Martin Gräßlin