Add a new GDK backend
authorGiovanni Campagna <gcampagna@src.gnome.org>
Fri, 26 Aug 2011 01:09:18 +0000 (03:09 +0200)
committerEmmanuele Bassi <ebassi@linux.intel.com>
Thu, 3 Nov 2011 13:42:13 +0000 (13:42 +0000)
commit610a9c17bacfe3106d59d3c450be6a07cd26490a
treeccaa41b113fd66a40629994706f2a34978b10aaf
parentdb53ca382c5db10fa19f93761b8f898b20a4534f
Add a new GDK backend

This commit introduces a new flavour for Clutter, that uses GDK
for handling all window system specific interactions (except for
creating the cogl context, as cogl does not know about GDK), including
in particular events. This is not compatible with the X11 (glx)
flavour, and this is reflected by the different soname (libclutter-gdk-1.0.so),
as all X11 specific functions and classes are not available. If you
wish to be compatible, you should check for CLUTTER_WINDOWING_X11.
Other than that, this backend should be on feature parity with X11,
including XInput 2, XSettings and EMWH (with much, much less code)

https://bugzilla.gnome.org/show_bug.cgi?id=657434
20 files changed:
clutter/Makefile.am
clutter/cogl/clutter-backend-cogl.c
clutter/cogl/clutter-backend-cogl.h
clutter/cogl/clutter-stage-cogl.c
clutter/cogl/clutter-stage-cogl.h
clutter/gdk/clutter-backend-gdk-private.h [new file with mode: 0644]
clutter/gdk/clutter-backend-gdk.c [new file with mode: 0644]
clutter/gdk/clutter-backend-gdk.h [new file with mode: 0644]
clutter/gdk/clutter-device-manager-gdk.c [new file with mode: 0644]
clutter/gdk/clutter-device-manager-gdk.h [new file with mode: 0644]
clutter/gdk/clutter-event-gdk.c [new file with mode: 0644]
clutter/gdk/clutter-gdk.h [new file with mode: 0644]
clutter/gdk/clutter-input-device-gdk.c [new file with mode: 0644]
clutter/gdk/clutter-input-device-gdk.h [new file with mode: 0644]
clutter/gdk/clutter-settings-gdk.h [new file with mode: 0644]
clutter/gdk/clutter-stage-gdk.c [new file with mode: 0644]
clutter/gdk/clutter-stage-gdk.h [new file with mode: 0644]
configure.ac
tests/conform/test-cogl-texture-pixmap-x11.c
tests/conform/test-conform-common.c