OpenGL Compositing

All the ideas of the composite usage can be used in a OpenGL composited desktop. Besides that, the window manager and the composite manager could do interesting things. The z-order concept we already have in the 2D desktop could be improved by using a real z-order. Effects like the ones we see in Metisse will be easilly doable. Here I put some other ideas of what could be done using an OpenGL composite manager:
As we are not used to work on 3D dekstops, we don't know exactly how far we can go, but I'm sure more ideas will appear as soon as we start innovating on that.

What do we need for OpenGL compositing?

A root GL visual

This is the main requirement. There are currently two ways to reach that: using accelerated indirect GLX (AIGLX) or having the whole X running on top of OpenGL. Both approaches have already a base implementation that can be used for us to start creating on that. AIGLX is already available on Cooker (as we have X.org 7.1 there). Xgl (the version that runs on top of GLX) is available as third part packages.

the GLX_texture_from_pixmap extension

This extension makes it possible to use X pixmaps directly as OpenGL textures (and it is use by GL composite managers for applying window contents as textures for polygons). The Mesa OpenGL implementation already have this extension, and the proprietary drivers may have it soon too.

OpenGL Composite Manager

We have compiz, but we don't have anything for KDE3. Compiz already has window decoration for KDE4 though. We could use kompmgr (which has already some integration with kwin), or even create a KDE3 GL composite manager based on compiz.

Why should we use a OpenGL composite manager?

Because we are going this way. We have decided to put efforts on making Xegl happen. Xegl moves the video hardware dependency outside the X server. It access the video hardware through the EGL library. So, in the future the X server will be running on top of OpenGL and we will have the root GL visual, so why not use this for something usefull?