Re: [PATCH wayland] cursor: Use memfd_create() when available

2019-02-16 Thread Simon Ser via wayland-devel
Nice! There's a small typo, but otherwise this LGTM. Reviewed-by: Simon Ser > +#ifdef HAVE_MEMFD_CREATE > + fd = memfd_create("wayland-cursor", MFD_CLOEXEC | MFD_ALLOW_SEALING); > + if (fd >= 0) { > + /* We can add this seal before calling posix_fall

Re: [RFC wayland-protocols 1/1] unstable: add color management protocol

2019-02-16 Thread Erwin Burema via wayland-devel
On Thu, 14 Feb 2019 at 16:39, Sharma, Shashank via wayland-devel wrote: Hi, > > Regards > Shashank > > > -Original Message- > > From: wayland-devel [mailto:wayland-devel-boun...@lists.freedesktop.org] On > > Behalf Of Sebastian Wick > > Sent: Thursda

Re: [RFC wayland-protocols 1/1] unstable: add color management protocol

2019-02-16 Thread Erwin Burema via wayland-devel
e > > all three. And there's a variant, which is 'Display P3' from Apple, > > which starts out being defined with DCI-P3 D65 but uses a tone > > response curve defined by the sRGB curve. > > > > > >> + > > > > Probably the

Re: [RFC wayland-protocols 1/1] unstable: add color management protocol

2019-02-16 Thread Erwin Burema via wayland-devel
Hi, On Thu, 14 Feb 2019 at 16:40, Nautiyal, Ankit K via wayland-devel wrote: > > Hi Sebastian, > > I am trying to extend Ole's color management protocol [1] to enable a client > to pass HDR meta data. > Added the modified protocol as weston protocol for the time being.

RE: [RFC wayland-protocols 1/1] unstable: add color management protocol

2019-02-14 Thread Sharma, Shashank via wayland-devel
Regards Shashank > -Original Message- > From: wayland-devel [mailto:wayland-devel-boun...@lists.freedesktop.org] On > Behalf Of Sebastian Wick > Sent: Thursday, February 14, 2019 12:13 PM > To: wayland-devel@lists.freedesktop.org > Subject: Re: [RFC wayland-protocols

Re: [RFC wayland-protocols 1/1] unstable: add color management protocol

2019-02-14 Thread Nautiyal, Ankit K via wayland-devel
On 2/14/2019 1:27 PM, Sebastian Wick wrote: On 2019-02-14 08:13, Nautiyal, Ankit K via wayland-devel wrote: Hi Sebastian, I am trying to extend Ole's color management protocol [1] to enable a client to pass HDR meta data. Added the modified protocol as weston protocol for the time bein

Re: [RFC wayland-protocols 1/1] unstable: add color management protocol

2019-02-13 Thread Nautiyal, Ankit K via wayland-devel
ggest there should be another protocol for that altogether or is there a possibility to extend this for handling HDR metadata? [1] https://lists.freedesktop.org/archives/wayland-devel/2017-January/032770.html [2] https://gitlab.freedesktop.org/aknautiyal/weston/c

RE: [RFC wayland-protocols 1/1] unstable: add color management protocol

2019-02-13 Thread Sharma, Shashank via wayland-devel
Hello Sebastian, My comments inline. Regards Shashank > -Original Message- > From: wayland-devel [mailto:wayland-devel-boun...@lists.freedesktop.org] On > Behalf Of Sebastian Wick > Sent: Thursday, February 14, 2019 8:16 AM > To: wayland-devel@lists.freedesktop.org >

[PATCH v5 11/11] tests: use fdescfs at *BSD to count fds

2019-02-13 Thread Leonid Bobrov via wayland-devel
+90,7 @@ count_open_fds(void) continue; count++; } - assert(errno == 0 && "reading /proc/self/fd failed."); + assert(errno == 0 && "reading " OPEN_FDS_DIR " failed."); closedir(dir)

[PATCH v5 08/11] tests: add OS-specific tracing to runner

2019-02-13 Thread Leonid Bobrov via wayland-devel
return rc; +#endif } int main(int argc, char *argv[]) -- 2.20.1 _______ wayland-devel mailing list wayland-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/wayland-devel

[PATCH v5 10/11] tests: use OpenBSD replacement for proc

2019-02-13 Thread Leonid Bobrov via wayland-devel
+ assert(kif != NULL); + + /* KVM library frees memory on itself */ + kvm_close(kd); + return count; +#else DIR *dir; struct dirent *ent; int count = 0; @@ -62,6 +90,7 @@ count_open_fds(void) clo

[PATCH v5 05/11] core: define SO_PEERCRED if it's not defined

2019-02-13 Thread Leonid Bobrov via wayland-devel
Signed-off-by: Leonid Bobrov --- src/wayland-os.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wayland-os.h b/src/wayland-os.h index 86685e0..08b38bd 100644 --- a/src/wayland-os.h +++ b/src/wayland-os.h @@ -41,6 +41,9 @@ wl_os_event_create_cloexec(void); int wl_os_accept_cloexec

[PATCH v5 07/11] server: add *BSD credentials support

2019-02-13 Thread Leonid Bobrov via wayland-devel
Signed-off-by: Leonid Bobrov --- configure.ac | 2 ++ src/wayland-server.c | 35 +++ src/wayland-shm.c| 10 ++ 3 files changed, 47 insertions(+) diff --git a/configure.ac b/configure.ac index 414bc92..b8f30e4 100644 --- a/configure.ac +++ b

[PATCH v5 03/11] client: define EPROTO if it's not defined

2019-02-13 Thread Leonid Bobrov via wayland-devel
Signed-off-by: Leonid Bobrov --- src/wayland-client.h | 4 1 file changed, 4 insertions(+) diff --git a/src/wayland-client.h b/src/wayland-client.h index 9f70fa3..690c446 100644 --- a/src/wayland-client.h +++ b/src/wayland-client.h @@ -39,4 +39,8 @@ #include "wayland-client-c

[PATCH v5 04/11] core: add kqueue support

2019-02-13 Thread Leonid Bobrov via wayland-devel
800 +++ src/wayland-os.c | 47 +- src/wayland-os.h | 2 +- tests/os-wrappers-test.c | 55 +- 8 files changed, 920 insertions(+), 19 deletions(-) rename src/{event-loop.c => event-loop-epoll.c} (99%) create mode 1006

[PATCH v5 06/11] tests: support waitpid()

2019-02-13 Thread Leonid Bobrov via wayland-devel
[AC_HELP_STRING([--disable-libraries], [Disable compilation of wayland libraries])], diff --git a/tests/test-compositor.c b/tests/test-compositor.c index 72f6351..6e12630 100644 --- a/tests/test-compositor.c +++ b/tests/test-compositor.c @@ -23,6 +23,8 @@ * SOFTWA

[PATCH v5 01/11] tests: fix main symbol duplication

2019-02-13 Thread Leonid Bobrov via wayland-devel
/obj/wayland-1.16.0/build-amd64/.libs/libtest-runner.a -L.libs -lwayland-client -lffi -lm -lwayland-server -lkvm -Wl,-rpath-link,/usr/local/lib ld: error: duplicate symbol: main >>> defined at headers-test.c:53 >>> (/tmp/obj/wayland-1.16.0/wayland-1.16.0/tests

[PATCH v5 02/11] configure: detect libdl and librt

2019-02-13 Thread Leonid Bobrov via wayland-devel
= \ protocol/wayland-client-protocol.h libwayland_server_la_CFLAGS = $(FFI_CFLAGS) $(AM_CFLAGS) -pthread -libwayland_server_la_LIBADD = $(FFI_LIBS) libwayland-private.la libwayland-util.la -lrt -lm +libwayland_server_la_LIBADD = $(FFI_LIBS) libwayland-private.la

[PATCH v5 09/11] shm: use workaround if mremap() is not available

2019-02-13 Thread Leonid Bobrov via wayland-devel
Signed-off-by: Leonid Bobrov --- configure.ac | 4 src/wayland-shm.c | 30 ++ 2 files changed, 34 insertions(+) diff --git a/configure.ac b/configure.ac index 19ac93c..65cc543 100644 --- a/configure.ac +++ b/configure.ac @@ -95,6 +95,10 @@ AC_SUBST(RT_LIBS

wayland-build-tools build fail for libinput "./wl_build: line 19: ./autogen.sh: No such file or directory"

2017-09-09 Thread michael-wayland-user
Hi, My first post here. I'm in the process of slowly replacing Xorg with Wayland. I've always been interested in the possibilities of 3D operating systems and Wayland is a very exciting time for Linux. I have tried building Wayland using the "wayland-build-tools"

Re: Kinetic scroll in libinput Xorg driver

2016-10-28 Thread Alexis BRENON @Wayland
Thanks everyone for the advice and this (very) brief introduction to Wayland. It leads me to download the full documentation to learn more. Le ven. 28 oct. 2016 à 05:40, Carsten Haitzler a écrit : > On Fri, 28 Oct 2016 13:32:06 +1000 Peter Hutterer < > peter.hutte...@who-t.net> >

Re: Kinetic scroll in libinput Xorg driver

2016-10-25 Thread Alexis BRENON @Wayland
Just to be sure that I understand clearly, what you call 'Toolkit' is libraries like GTK, Qt, and co. that are used by developers to build their apps, isn't it ? Finally, do you know some tiling DE/WM Wayland compliant ? Kind, Alexis. Le mer. 26 oct. 2016 à 02:17, Carsten Ha

Re: Kinetic scroll in libinput Xorg driver

2016-10-25 Thread Alexis BRENON @Wayland
ery new to wayland and co. and I'm probably not legitimate to make this kind of choices. Kind, Alexis. Le mar. 25 oct. 2016 à 19:48, Bill Spitzak a écrit : > On Mon, Oct 24, 2016 at 5:31 PM, Peter Hutterer > wrote: > > On Mon, Oct 24, 2016 at 06:42:31PM +0000, Alexis BRENON @Wayland

Re: Kinetic scroll in libinput Xorg driver

2016-10-25 Thread Alexis BRENON @Wayland
directly related to the app, and I fear that some (if not most) will not implement it at all... - Finally, my window manager is not ready to change to Wayland ( http://www.mail-archive.com/awesome@naquadah.org/msg05058.html), and so is far from implementing features lacking from Wayland

Kinetic scroll in libinput Xorg driver

2016-10-24 Thread Alexis BRENON @Wayland
y proposition a good way to implement it? Thanks for your attention. Kind regards, Alexis BRENON. ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [weston v2] configure.ac: Add support for new versions of systemd

2015-03-13 Thread sardemff7+wayland
uot;xyes") AS_IF([test "x$have_systemd_login_209" = "xyes"], [AC_DEFINE([HAVE_SYSTEMD_LOGIN_209], [1], [Have systemd-login >= 209])]) [1] http://cgit.freedesktop.org/systemd/systemd/tree/src/compat-libs/libsystemd-login.pc.in?id=v209 -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH libinput 11/26] tablet: use libwacom to identify tablets for left-handedness

2015-02-26 Thread sardemff7+wayland
UBST. I would just use ${use_libwacom}. Since you do not use automagic detection, it will always be set correctly for the summary. :-) -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH weston] configure.ac: make use of wayland-scanner.pc

2015-02-23 Thread sardemff7+wayland
On 2015-02-17 16:13, Emil Velikov wrote: Currently we use the wayland-scanner executable as found with AC_PATH_PROG, and then check the presence of wayland-scanner.pc Currently the latter is unused even if AC_PATH_PROG fails to find the binary. Rework things to use the pkg-config variable as a

Re: [PATCH weston 1/2] configure.ac: Don't look for Xwayland in the weston install destination

2015-02-10 Thread sardemff7+wayland
y log to share? -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH libinput 2/3] Add a rules file to assign LIBINPUT_DEVICE_GROUP

2015-02-10 Thread sardemff7+wayland
++ b/rules/Makefile.am @@ -0,0 +1,4 @@ +udevdir=$(UDEV_RULES_DIR) +udev_DATA = 80-libinput-tablet.rules + +EXTRA_DIST = $(udev_DATA) Please use that only: udevdir=$(UDEV_RULES_DIR) dist_udev_DATA = 80-libinput-tablet.rules -- Quentin “Sardem FF7” Glidic _______

Re: [PATCH V2] configure.ac: Fallback to older detection code if pkg-config can't find expat

2015-02-02 Thread sardemff7+wayland
ind expat library. Please install expat.])]) + ]) fi AC_PATH_PROG(XSLTPROC, xsltproc) -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH] Fallback to older detection code if pkg-config can't find expat

2015-01-31 Thread sardemff7+wayland
)/wayland-scanner bin_PROGRAMS = wayland-scanner wayland_scanner_SOURCES = src/scanner.c -wayland_scanner_CFLAGS = $(EXPAT_CFLAGS) $(AM_CFLAGS) This hunk is bad. If the pkg-config file provide CFLAGS, they must be used. And there is no harm at all to use an undefined variable here. (And I think we

Re: [PATCH 1/1] configure.ac: use pkg-config to find expat

2015-01-27 Thread sardemff7+wayland
(-) diff --git a/Makefile.am b/Makefile.am index 1551762..a2c2d79 100644 --- a/Makefile.am +++ b/Makefile.am @@ -65,6 +65,7 @@ if ENABLE_SCANNER wayland_scanner = $(top_builddir)/wayland-scanner bin_PROGRAMS = wayland-scanner wayland_scanner_SOURCES = src/scanner.c +wayland_scanner_CFLAGS

Re: [WESTON patch] Makefile: fix assigning to dist_wayland_session_DATA

2015-01-22 Thread sardemff7+wayland
rtion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index ccec9f3..589b47b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -158,7 +158,7 @@ pkgconfig_DATA = src/weston.pc wayland_sessiondir = $(datadir)/wayland-sessions wayland_session_DATA = src/weston.desktop -dist_

Re: [PATCH weston] build: install a login manager session entry

2015-01-21 Thread sardemff7+wayland
tin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH weston v2 2/2] compositor: Implement JSON-timeline logging

2014-12-04 Thread sardemff7+wayland
will get something like this (using "{…}" for complete objects): [ {…}, {…}, {…}, {}] Or you can use a JSON library that will manage it for you. -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing list wayland-dev

Re: [PATCH] doc: Add config check for doxygen 1.8.0+.

2014-12-04 Thread sardemff7+wayland
checkouts/gnu/autoconf/manual/autoconf.html#index-AS_005fVERSION_005fCOMPARE-1588> I would advise anyone working with Autotools to read the full manual(s) at least once to understand the thing better. :-) Cheers, -- Quentin “Sardem FF7” Glidic ___ wayla

Re: [weston V2 1/2] Check for math (m) and real time (rt) libraries

2014-10-31 Thread sardemff7+wayland
ing most of the time. I would recommend adding AM_SUBST_NOTMAKE(LIBS) to configure.ac, and add all the appropriate *_LIBS and *_CFLAGS variables everywhere needed. -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.

Re: [PATCH] build: honor results obtained by pkg-config libinput

2014-09-30 Thread sardemff7+wayland
eat.c and add LIBINPUT_BACKEND_CFLAGS to their _CFLAGS variable. Hint: add an INPUT_BACKEND_CFLAGS variable mimicking INPUT_BACKEND_LIBS. Nacked-by: Quentin Glidic Cheers, -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

[PATCH weston] Document output/scale configuration option in the weston.ini man page.

2014-08-25 Thread maghoff+wayland
a" displays. +.RE +.TP 7 .BI "seat=" name The logical seat name that that this output should be associated with. If this is set then the seat's input will be confined to the output that has the seat -- 1.9.1 ___ wayland-deve

[PATCH weston] Document output/scale configuration option in the weston.ini man page.

2014-08-25 Thread maghoff+wayland
h. If this is set then the seat's input will be confined to the output that has the seat -- 1.9.1 ___________ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

[PATCH weston] Document output/scale configuration option in the weston.ini man page

2014-08-23 Thread maghoff+wayland
ned to the output that has the seat -- 1.9.1 ___________ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

[PATCH] Implemented support for mouse scrolling in weston-terminal

2014-08-05 Thread maghoff+wayland
ch_down_handler); widget_set_touch_motion_handler(terminal->widget, touch_motion_handler); -- 1.9.1 ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH libinput 6/8] test/Makefile.am: Use $(GCC_CFLAGS) from configure.ac

2014-03-25 Thread sardemff7+wayland
also add AM_CXXFLAGS to test_build_cxx_CXXFLAGS.) -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: Weston : ideas about xdg_sell, and implementation for a taskbar

2014-02-11 Thread sardemff7+wayland
g flags in the configure event to inform the client which actions are supported will just remove such a weird case. […] The rest of your email should be answered already. Thanks, -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing list

Re: Weston : ideas about xdg_sell, and implementation for a taskbar

2014-02-10 Thread sardemff7+wayland
ond to the minimize-notify by rearranging the surface tree, redrawing surfaces, doing minimize-request on other surfaces, etc. It then eventually does a commit, and the serial number can be used to identify that it is in response to the minimize-notify (is this possible in wayland?). Note the client

Re: Weston : ideas about xdg_sell, and implementation for a taskbar

2014-02-10 Thread sardemff7+wayland
de and compositor-side. Concerning point 4, it could be a decoration flag in the configure event, the same way we want side ones (to support tiling!). Thanks, -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH weston 06/11] configure.ac: Make AC_ARG_ENABLE calls consistent

2013-12-08 Thread sardemff7+wayland
..157dc3a 100644 --- a/configure.ac +++ b/configure.ac […] @@ -158,10 +173,13 @@ fi PKG_CHECK_MODULES(COMPOSITOR, [$COMPOSITOR_MODULES]) -AC_ARG_ENABLE(wayland-compositor, [ --enable-wayland-compositor],, +AC_ARG_ENABLE(wayland-compositor, + AS_HELP_STRING([--disable-wayland-compositor

Re: [RFC wayland v2] libwayland-client: Add GLib main loop integration

2013-10-23 Thread sardemff7+wayland
Forgot to amend the commit message: libwayland-client: Add GLib main loop integration -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH weston 1/5] tests: always build tests

2013-09-11 Thread sardemff7+wayland
Also, having them broken clearly states “we don’t care about them”, which is sane if upstream really do not care. -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH weston 2/5] tests: use variable for test name in weston-tests-env

2013-09-11 Thread sardemff7+wayland
echo "usage: $(basename $0) " + exit 1; +fi + WESTON=$abs_builddir/../src/weston LOGDIR=$abs_builddir/logs @@ -18,17 +25,17 @@ else BACKEND=$abs_builddir/../src/.libs/wayland-backend.so fi -case $1 in +case $TESTNAME in *.la|*.so) $

Re: [PATCH weston 1/5] tests: always build tests

2013-09-11 Thread sardemff7+wayland
FF7” Glidic _______ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [RFC] compositor-drm: Add hardware accelerated capture of screen using libva

2013-08-30 Thread sardemff7+wayland
feature not based on detection. Packagers will love you. Cheers, -- Quentin “Sardem FF7” Glidic ___________ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH weston sdk v2 1/8] weston.pc: Add dependencies for pixman-1 and xkbcommon

2013-07-04 Thread sardemff7+wayland
static builds. The point will be when libweston will exist. -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: xserver problems

2013-07-03 Thread sardemff7+wayland
Spitzak wrote: For the last 2 months running x applications under wayland is producing black windows, but if you resize them you get screwed up window borders (in attached picture). It also appears that the image does not update until the event *after* the one that caused the window to change. For

Re: [PATCH] build: disabling the mtdev library support

2013-06-25 Thread sardemff7+wayland
EMD_**LOGIN, [libsystemd-login], [have_systemd_login=yes], [have_systemd_login=no]) You should remove that hunk (git checkout -p). Yes but it's a bug already exiting Then please submit it in its own patch. :-) -- Quentin “Sardem FF7” Glidic ______

Re: [PATCH] build: disabling the mtdev library support

2013-06-25 Thread sardemff7+wayland
seat, const char *path, int device_fd) if (device->dispatch == NULL) goto err1; - if (device->is_mt) { device->mtdev = mtdev_new_open(device->fd); - if (!device->mtdev) - weston_log("mtdev failed to open for

Re: [PATCH 03/18] evdev: automatic configuration of mtdev library support

2013-06-21 Thread sardemff7+wayland
device->mtdev = mtdev_new_open(device->fd); - if (!device->mtdev) - weston_log("mtdev failed to open for %s\n", path); IMO, it should still log it if mtdev support is enabled. } device->source = wl_event_loop_add_fd(ec-&

Re: [PATCH 03/18] evdev: automatic configuration of mtdev library support

2013-06-21 Thread sardemff7+wayland
device->mtdev = mtdev_new_open(device->fd); - if (!device->mtdev) - weston_log("mtdev failed to open for %s\n", path); IMO, it should still log it if mtdev support is enabled. } device->source = wl_event_loop_add_fd(ec->input_loop, device->fd, -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH weston 6/7] weston.ini: Allow a relative path for input-method

2013-06-18 Thread sardemff7+wayland
path = path; Of course this last line is a leftover. My bad. Commit fixed locally. } static void diff --git a/weston.ini b/weston.ini index f2abceb..a9ddbc9 100644 --- a/weston.ini +++ b/weston.ini @@ -40,7 +40,7 @@ path=/usr/libexec/weston-screensaver duration=600 [input-method] -pa

Re: minimized and stick windows

2013-06-13 Thread sardemff7+wayland
case for a popup surface that you would reparent? For our current use case (menus, do we have another one?) this is unlikely (afaict, I am not a toolkit guy). Thanks, -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing list wayland-devel@lists.free

Re: minimized and stick windows

2013-06-12 Thread sardemff7+wayland
ding party, but I guess I didn't really understand Rafael's question. Sorry. ^^' -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: minimized and stick windows

2013-06-12 Thread sardemff7+wayland
games) already have heavy switching, so destroying and creating a new surface should not be a problem here, imo. Cheers, -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: Things that killed my motivation to play with wayland

2013-06-12 Thread sardemff7+wayland
t they are. I just rebased the full xwayland branch to xorg-server master, and also the intel and wlshm DDX. http://git.sardemff7.net/wayland/xorg-server/log/?h=xwayland-1.15 http://git.sardemff7.net/wayland/xf86-video-intel/log/?h=xwayland http://git.sardemff7.net/wayland/xf86-video-wlshm/ If Tiago

Re: [PATCH] weston.pc: Added libexecdir and pkglibexecdir variables

2013-06-11 Thread sardemff7+wayland
djusted to pkglibexecdir? Could you write a patch for that? I think it might be a good idea. I can include it in a series to clean and move a few stuff around to “more standard paths” if you want. -- Quentin “Sardem FF7” Glidic _______ wayland-devel mailing li

Re: [PATCH weston v2 4/4] weston.pc: Provide moduledir

2013-06-11 Thread sardemff7+wayland
rs each). But in this regard, we may set moduledir to $(pkglibdir) for now, or directly to $(pkglibdir)/modules. I will send a patch or two on this directories’ thing. Thanks for the comment. -- Quentin “Sardem FF7” Glidic _______ wayland-devel maili

Re: [PATCH] clients/nested: Fix compilation

2013-06-04 Thread sardemff7+wayland
both. I just wanted to know if you tested with desktop GL, since Kristian probably developed with GLESv2. -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wa

Re: [PATCH] clients/nested: Fix compilation

2013-06-04 Thread sardemff7+wayland
the nested client work with desktop GL then? diff --git a/configure.ac b/configure.ac index ba1fcac..98798c9 100644 --- a/configure.ac +++ b/configure.ac @@ -227,6 +227,7 @@ if test x$enable_clients = xyes; then AC_DEFINE([BUILD_CLIENTS], [1], [Build the Wayland clients

Re: Compiling weston now needs colord

2013-06-03 Thread sardemff7+wayland
cy on optional features). A little configure switch, and you are done, nothing to complain about. :-) -- Quentin “Sardem FF7” Glidic ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wa

Re: how can i run the xorg under the wayland

2012-01-16 Thread wayland
Dear juan: thanks for you replay; right now i can run the xorg under the wayland, but when i run the xterm , the xorg get error: wl_drm@4: error 1: invalid format ; and the xterm get the error: xterm: fatal IO error 11 (Resource temporarily unavailable) or KillClient on X server

how can i run the xorg under the wayland

2012-01-15 Thread wayland
Dear All: i want to run xorg under the wayland as a wayland-client, and i download the xorg in the git://people.freedesktop.org/~krh/xserver and the intel video in the: git://people.freedesktop.org/~krh/xf86-video-intel when i run the xorg , i get the error: [ 1955.177] (EE) XKB: Couldn&#