search for: xorg_wayland

Displaying 2 results from an estimated 2 matches for "xorg_wayland".

2012 May 23
1
[PATCH (nouveau)] Add xwayland support
...+----- src/nv_type.h | 7 +++ 3 files changed, 191 insertions(+), 13 deletions(-) diff --git a/src/nouveau_dri2.c b/src/nouveau_dri2.c index 7e47575..cb1a395 100644 --- a/src/nouveau_dri2.c +++ b/src/nouveau_dri2.c @@ -8,6 +8,10 @@ #ifdef DRI2 #include "dri2.h" #endif +#ifdef XORG_WAYLAND +#include <xf86Priv.h> +#include <xwayland.h> +#endif #if defined(DRI2) && DRI2INFOREC_VERSION >= 3 struct nouveau_dri2_buffer { @@ -660,6 +664,32 @@ nouveau_dri2_flip_event_handler(unsigned int frame, unsigned int tv_sec, free(flip); } +#ifdef XORG_WAYLAND +static i...
2012 Jul 04
0
[PATCH] Add xwayland support (v2)
...create mode 100644 src/xwayland_compat.c create mode 100644 src/xwayland_compat.h diff --git a/configure.ac b/configure.ac index af126fb..a69a104 100644 --- a/configure.ac +++ b/configure.ac @@ -110,6 +110,13 @@ AC_SUBST([moduledir]) DRIVER_NAME=nouveau AC_SUBST([DRIVER_NAME]) +AC_CHECK_DECL(XORG_WAYLAND, + [have_xwayland=yes], + [have_xwayland=no], + [#include <xorg-server.h>]) +AM_CONDITIONAL([XORG_WAYLAND], test "x$have_xwayland" = "xyes") + + XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION diff --git a/src/Makefile.am b/src/Makefile.am index bf9c967..5...