Re: weston-info as a standalone utility

2020-07-29 Thread Olivier Fourdan
Hi all, On Mon, 20 Jul 2020 at 13:50, Olivier Fourdan wrote: > Cool! Done, here: > https://gitlab.freedesktop.org/ofourdan/wayland-utils Is there anything more to do before we can get that moved under the wayland domain? Cheers Olivier ___ wayland-dev

Re: weston-info as a standalone utility

2020-07-20 Thread Olivier Fourdan
> > > > Sounds good. Cool! Done, here: https://gitlab.freedesktop.org/ofourdan/wayland-utils If that works for everyone, I'll remove the old “wayland-info” repo. > > Regarding weston-info, shouldn't we add a deprecation warning before > > actually removing i

Re: weston-info as a standalone utility

2020-07-20 Thread Pekka Paalanen
ard with this, I shall: > > - Rename the repository to “wayland-utils” > - Move the source into its own subdirectory (so we can have more later) > Sounds good. > Regarding weston-info, shouldn't we add a deprecation warning before > actually removing it? Or maybe add a sym

Re: weston-info as a standalone utility

2020-07-20 Thread Olivier Fourdan
can have more later) Regarding weston-info, shouldn't we add a deprecation warning before actually removing it? Or maybe add a symlink weston-info→wayland-info ? Cheers Olivier ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org

Re: weston-info as a standalone utility

2020-07-20 Thread Olivier Fourdan
Hi Pekka On Mon, 13 Jul 2020 at 08:53, Pekka Paalanen wrote: > > could you explain a bit more about how weston-info is so different > from the other simple demos? Precisely, it is not a demo, nor a test, it's a useful tool for regular users and developers. > I'll throw in

Re: weston-info as a standalone utility

2020-07-14 Thread Michel Dänzer
Jul 2020 at 16:41, Daniel Stone >>> wrote: >>>> >>>> On Thu, 9 Jul 2020 at 15:38, Pekka Paalanen >>>> wrote: >>>>> +1 for having this under the wayland organization in >>>>> Gitlab. +1 for deleting weston-info from Weston

Re: weston-info as a standalone utility

2020-07-12 Thread Pekka Paalanen
> > > > +1 for having this under the wayland organization in Gitlab. > > > > +1 for deleting weston-info from Weston repository. > > > > > > > > Shall we keep the new repository only for "info" tools, or should > > > > it c

Re: weston-info as a standalone utility

2020-07-12 Thread Peter Hutterer
On Thu, Jul 09, 2020 at 05:14:32PM +0200, Olivier Fourdan wrote: > Hey, > > On Thu, 9 Jul 2020 at 16:41, Daniel Stone wrote: > > > > On Thu, 9 Jul 2020 at 15:38, Pekka Paalanen wrote: > > > +1 for having this under the wayland organization in Gitlab. > >

Re: weston-info as a standalone utility

2020-07-09 Thread Olivier Fourdan
Hey, On Thu, 9 Jul 2020 at 16:41, Daniel Stone wrote: > > On Thu, 9 Jul 2020 at 15:38, Pekka Paalanen wrote: > > +1 for having this under the wayland organization in Gitlab. > > +1 for deleting weston-info from Weston repository. > > > > Shall we keep the new re

Re: weston-info as a standalone utility

2020-07-09 Thread Daniel Stone
Hi, On Thu, 9 Jul 2020 at 15:38, Pekka Paalanen wrote: > On Thu, 9 Jul 2020 10:32:56 +0200 > Olivier Fourdan wrote: > > In the meantime, Peter has already submitted patches to wayland-info > > (thanks Peter!) so the tip of wayland-info is different from > > weston-

Re: weston-info as a standalone utility

2020-07-09 Thread Pekka Paalanen
On Thu, 9 Jul 2020 10:32:56 +0200 Olivier Fourdan wrote: > Hi all, > > A long time ago [1], I suggested that we move weston-info out of the > Weston source tree because this is a very useful tool which gives > important information about any Wayland compositor, not just Weston. &

weston-info as a standalone utility

2020-07-09 Thread Olivier Fourdan
Hi all, A long time ago [1], I suggested that we move weston-info out of the Weston source tree because this is a very useful tool which gives important information about any Wayland compositor, not just Weston. The general consensus was it was a good idea, unfortunately other more important

Re: [PATCH v3 0/2] Add tablet_v2 suport to weston-info

2018-05-29 Thread Pekka Paalanen
On Mon, 30 Apr 2018 11:35:48 +0200 w...@ongy.net wrote: > From: Markus Ongyerth > > Changes since v2: > * Incorporated style changes as requested by Peter > > Exception: Single line multi declaration. > > Cheers, > ongy > > Markus Ongyerth (2): >

Re: [PATCH v3 1/2] weston-info: Add support for tablet-unstable-v2

2018-05-20 Thread Peter Hutterer
On Mon, Apr 30, 2018 at 11:35:49AM +0200, w...@ongy.net wrote: > From: Markus Ongyerth > > This now prints each tablet seat with at least one tablet/pad/tool > attached. > For each tablet seat, each tablet, pad and tool is printed with as much > detail about the device as the protocol provides. >

Re: [PATCH v3 2/2] weston-info: destroy wl_keyboard

2018-05-20 Thread Peter Hutterer
On Mon, Apr 30, 2018 at 11:35:50AM +0200, w...@ongy.net wrote: > From: Markus Ongyerth > > Fixes a memory leak by calling wl_keyboard_destroy on a any keyboard already has my rev-by anyway, but "on a any" seems overly excessive here ;) Cheers, Peter > that was used to listen for events. >

[PATCH v3 2/2] weston-info: destroy wl_keyboard

2018-04-30 Thread wl
From: Markus Ongyerth Fixes a memory leak by calling wl_keyboard_destroy on a any keyboard that was used to listen for events. Signed-off-by: Markus Ongyerth Acked-by: Pekka Paalanen Reviewed-by: Peter Hutterer --- clients/weston-info.c | 10 ++ 1 file changed, 6 insertions(+), 4 del

[PATCH v3 1/2] weston-info: Add support for tablet-unstable-v2

2018-04-30 Thread wl
From: Markus Ongyerth This now prints each tablet seat with at least one tablet/pad/tool attached. For each tablet seat, each tablet, pad and tool is printed with as much detail about the device as the protocol provides. Seat info is stored to be referenced, because the protocol requires to reque

[PATCH v3 0/2] Add tablet_v2 suport to weston-info

2018-04-30 Thread wl
From: Markus Ongyerth Changes since v2: * Incorporated style changes as requested by Peter Exception: Single line multi declaration. Cheers, ongy Markus Ongyerth (2): weston-info: Add support for tablet-unstable-v2 weston-info: destroy wl_keyboard Makefile.am | 14

Re: [PATCH v2 1/2] weston-info: Add support for tablet-unstable-v2

2018-04-30 Thread Pekka Paalanen
On Sat, 28 Apr 2018 10:01:43 +0200 Markus Ongyerth wrote: > On 2018/April/27 04:55, Peter Hutterer wrote: > > On Thu, Apr 26, 2018 at 05:01:23PM +0200, w...@ongy.net wrote: > > > + int tilt; > > > + int pressure; > > > + int distance; > > > + int rotation; > > > + int slider; > > > + int wheel

Re: [PATCH v2 1/2] weston-info: Add support for tablet-unstable-v2

2018-04-28 Thread Markus Ongyerth
Hi, thanks for the feedback, I'll provide a v3 shortly. I just have a few follow up questions, before I do so. On 2018/April/27 04:55, Peter Hutterer wrote: > On Thu, Apr 26, 2018 at 05:01:23PM +0200, w...@ongy.net wrote: > > From: Markus Ongyerth > > > > +struct tablet_v2_path { > > + stru

Re: [PATCH v2 1/2] weston-info: Add support for tablet-unstable-v2

2018-04-26 Thread Peter Hutterer
On Thu, Apr 26, 2018 at 05:01:23PM +0200, w...@ongy.net wrote: > From: Markus Ongyerth > > This now prints each tablet seat with at least one tablet/pad/tool > attached. > For each tablet seat, each tablet, pad and tool is printed with as much > detail about the device as the protocol provides. >

Re: [PATCH v2 2/2] weston-info: destroy wl_keyboard

2018-04-26 Thread Peter Hutterer
On Thu, Apr 26, 2018 at 05:01:24PM +0200, w...@ongy.net wrote: > From: Markus Ongyerth > > Fixes a memory leak by calling wl_keyboard_destroy on a any keyboard > that was used to listen for events. > > Signed-off-by: Markus Ongyerth Reviewed-by: Peter Hutterer Cheers, Peter > --- > clien

[PATCH v2 0/2] Add tablet_v2 support to weston-info

2018-04-26 Thread wl
for general purpose usage. The struct is fine, but the surrounding code really doesn't scratch my itch. If others think it's a better solution as well, I can change it, but I'm not a fan Cheers, ongy Markus Ongyerth (2): weston-info: Add support for tablet-unstable-v2 we

[PATCH v2 2/2] weston-info: destroy wl_keyboard

2018-04-26 Thread wl
From: Markus Ongyerth Fixes a memory leak by calling wl_keyboard_destroy on a any keyboard that was used to listen for events. Signed-off-by: Markus Ongyerth --- clients/weston-info.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/clients/weston-info.c b/clients

[PATCH v2 1/2] weston-info: Add support for tablet-unstable-v2

2018-04-26 Thread wl
From: Markus Ongyerth This now prints each tablet seat with at least one tablet/pad/tool attached. For each tablet seat, each tablet, pad and tool is printed with as much detail about the device as the protocol provides. Seat info is stored to be referenced, because the protocol requires to reque

Re: [PATCH 0/2] Add tablet_v2 support to weston-info

2018-04-24 Thread Pekka Paalanen
On Tue, 24 Apr 2018 09:31:21 +0200 w...@ongy.net wrote: > From: Markus Ongyerth > > Hi, > > the first commit adds support for the tablet-unstable-v2 protocol to > weston-info. It will output the currently attached tablets, tablet_pads and > tablet_tools with all info pro

Re: [PATCH 1/2] weston-info: Add support for tablet-unstable-v2

2018-04-24 Thread Simon Ser
On April 24, 2018 8:31 AM, wrote: > From: Markus Ongyerth > > This now prints each tablet seat with at least one tablet/pad/tool > attached. > For each tablet seat, each tablet, pad and tool is printed with as much > detail about the device as the protocol provides. > Seat info is stored to be r

[PATCH 2/2] weston-info: destroy wl_keyboard

2018-04-24 Thread wl
From: Markus Ongyerth Fixes a memory leak by calling wl_keyboard_destroy on a any keyboard that was used to listen for events. Signed-off-by: Markus Ongyerth --- clients/weston-info.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/clients/weston-info.c b/clients

[PATCH 1/2] weston-info: Add support for tablet-unstable-v2

2018-04-24 Thread wl
From: Markus Ongyerth This now prints each tablet seat with at least one tablet/pad/tool attached. For each tablet seat, each tablet, pad and tool is printed with as much detail about the device as the protocol provides. Seat info is stored to be referenced, because the protocol requires to reque

[PATCH 0/2] Add tablet_v2 support to weston-info

2018-04-24 Thread wl
From: Markus Ongyerth Hi, the first commit adds support for the tablet-unstable-v2 protocol to weston-info. It will output the currently attached tablets, tablet_pads and tablet_tools with all info provided by the protocol. An example output: ``` interface: 'zwp_tablet_manager_v2',

Re: [PATCH weston] weston-info: Add support for zwp_linux_dmabuf_v1

2017-12-01 Thread Daniel Stone
Hi, On 3 October 2017 at 14:36, Emmanuel Gil Peyrot wrote: > This now prints each (format, modifier) tuple, to show which ones the > compositor sends to its clients. It is only implemented for version 3+, > since I didn’t have any compositor implementing previous versions, and > the old `format`

[PATCH weston] weston-info: Add support for zwp_linux_dmabuf_v1

2017-10-03 Thread Emmanuel Gil Peyrot
This now prints each (format, modifier) tuple, to show which ones the compositor sends to its clients. It is only implemented for version 3+, since I didn’t have any compositor implementing previous versions, and the old `format` event is deprecated anyway. Signed-off-by: Emmanuel Gil Peyrot ---

Re: [PATCH weston] clients/weston-info: print unknown formats better

2017-02-28 Thread Pekka Paalanen
On Tue, 21 Feb 2017 10:01:45 + Eric Engestrom wrote: > On Monday, 2017-02-20 15:47:57 +0200, Pekka Paalanen wrote: > > From: Pekka Paalanen > > > > Don't just dump the raw 32-bit values, try to interpret it as a DRM > > fourcc too. > > > > This prints properly the formats YUYV, NV12 and YU

Re: [PATCH weston] clients/weston-info: print unknown formats better

2017-02-21 Thread Eric Engestrom
On Monday, 2017-02-20 15:47:57 +0200, Pekka Paalanen wrote: > From: Pekka Paalanen > > Don't just dump the raw 32-bit values, try to interpret it as a DRM > fourcc too. > > This prints properly the formats YUYV, NV12 and YU12 supported by > Weston. > > Signed-off-by: Pekka Paalanen > --- > cl

[PATCH weston] clients/weston-info: print unknown formats better

2017-02-20 Thread Pekka Paalanen
From: Pekka Paalanen Don't just dump the raw 32-bit values, try to interpret it as a DRM fourcc too. This prints properly the formats YUYV, NV12 and YU12 supported by Weston. Signed-off-by: Pekka Paalanen --- clients/weston-info.c | 29 - 1 file changed, 28 inserti

Re: [PATCH weston] weston-info: look for the right wp_presentation

2016-04-22 Thread Pekka Paalanen
Fix it. > > > > This makes weston-info report the presentation clock again. > > > > Signed-off-by: Pekka Paalanen > > --- > > clients/weston-info.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/clients/weston-i

Re: [PATCH weston] weston-info: look for the right wp_presentation

2016-04-21 Thread Bryce Harrington
On Tue, Apr 19, 2016 at 04:20:32PM +0300, Pekka Paalanen wrote: > From: Pekka Paalanen > > Patch b00c79b587a4903df576008a64a49f851fed234c forgot to update the > global interface name to look for. Fix it. > > This makes weston-info report the presentation clock again. > &

[PATCH weston] weston-info: look for the right wp_presentation

2016-04-19 Thread Pekka Paalanen
From: Pekka Paalanen Patch b00c79b587a4903df576008a64a49f851fed234c forgot to update the global interface name to look for. Fix it. This makes weston-info report the presentation clock again. Signed-off-by: Pekka Paalanen --- clients/weston-info.c | 2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH weston] weston-info: do not round refresh rates

2016-04-12 Thread Pekka Paalanen
On Tue, 12 Apr 2016 10:23:54 +0200 Quentin Glidic wrote: > On 12/04/2016 10:13, Pekka Paalanen wrote: > > From: Pekka Paalanen > > > > Weston-info was accidentally rounding refresh rates to integer Hz. > > > > Fix it to print 3 decimals, as the protocol carries

Re: [PATCH weston] weston-info: do not round refresh rates

2016-04-12 Thread Quentin Glidic
On 12/04/2016 10:13, Pekka Paalanen wrote: From: Pekka Paalanen Weston-info was accidentally rounding refresh rates to integer Hz. Fix it to print 3 decimals, as the protocol carries exactly that. Reported-by: Michel Dänzer Cc: John Galt Signed-off-by: Pekka Paalanen --- clients/weston

[PATCH weston] weston-info: do not round refresh rates

2016-04-12 Thread Pekka Paalanen
From: Pekka Paalanen Weston-info was accidentally rounding refresh rates to integer Hz. Fix it to print 3 decimals, as the protocol carries exactly that. Reported-by: Michel Dänzer Cc: John Galt Signed-off-by: Pekka Paalanen --- clients/weston-info.c | 2 +- 1 file changed, 1 insertion

Re: weston-info

2016-04-06 Thread Bryce Harrington
g for the > >> > name begin! ;-) > >> > > >> > (Is it expected to host other universal Wayland tools?) > >> > >> Very good question, do we have any other universal tool of general use like > >> weston-info? > >> > >> I would b

Re: weston-info

2016-04-06 Thread Jonas Ådahl
On Wed, Apr 06, 2016 at 02:57:29PM +0200, Olivier Fourdan wrote: > On 6 April 2016 at 14:12, Daniel Stone wrote: > > > > Just a fly by shed color thought. If we in the future want to add more > > > generic debug tools (for example something like xev that is a bit more > > > nice than "WAYLAND_DEB

Re: weston-info

2016-04-06 Thread Olivier Fourdan
On 6 April 2016 at 14:12, Daniel Stone wrote: > > Just a fly by shed color thought. If we in the future want to add more > > generic debug tools (for example something like xev that is a bit more > > nice than "WAYLAND_DEBUG=1 weston-terminal |& grep -e '[insert complex > > expression here]'") th

Re: weston-info

2016-04-06 Thread Daniel Stone
iversal Wayland tools?) >> >> Very good question, do we have any other universal tool of general use like >> weston-info? >> >> I would be fine with a dedicated repo ( >> Xorg tend >> s >> to use one repo per tool >> , e.g. >> xdpyinfo >&g

Re: weston-info

2016-04-06 Thread Yong Bakos
> On Apr 6, 2016, at 1:56 AM, Jonas Ådahl wrote: > > On Tue, Apr 05, 2016 at 11:55:42AM +0200, Olivier Fourdan wrote: >> Hi Pekka, >> >> On 5 April 2016 at 10:30, Pekka Paalanen wrote: >> >>> ​[...] >>> >>> >>> this is a g

Re: weston-info

2016-04-05 Thread Jonas Ådahl
On Tue, Apr 05, 2016 at 11:55:42AM +0200, Olivier Fourdan wrote: > Hi Pekka, > > On 5 April 2016 at 10:30, Pekka Paalanen wrote: > > > ​[...] > > > > > > this is a good idea indeed. > > > > Originally weston-info was needed in Weston repository,

Re: weston-info

2016-04-05 Thread Olivier Fourdan
Hi Pekka, On 5 April 2016 at 10:30, Pekka Paalanen wrote: > ​[...] > > > this is a good idea indeed. > > Originally weston-info was needed in Weston repository, because it was > useful in reporting specific information from extensions being > developed in Weston.

Re: weston-info

2016-04-05 Thread Pekka Paalanen
On Tue, 5 Apr 2016 10:20:28 +0200 Olivier Fourdan wrote: > Hi all, > > weston-info seems like a generally useful tool, even outside of weston, and > gives interesting information on the compositor, supported interfaces, > outputs, inputs... > > Only thing that seems f

weston-info

2016-04-05 Thread Olivier Fourdan
Hi all, weston-info seems like a generally useful tool, even outside of weston, and gives interesting information on the compositor, supported interfaces, outputs, inputs... Only thing that seems fairly specific is the presentation timing client protocol. I think it could be beneficial to move

Re: [PATCH weston] weston-info: display output scale

2015-12-18 Thread Pekka Paalanen
On Thu, 17 Dec 2015 12:31:56 + Jonny Lamb wrote: > Fall back to not showing anything as before if we don't have a > compositor with wl_output new enough (version 2 or newer). > > Signed-off-by: Jonny Lamb > Reviewed-by: Daniel Stone > --- > clients/weston-info.c | 32 +

[PATCH weston] weston-info: display output scale

2015-12-17 Thread Jonny Lamb
Fall back to not showing anything as before if we don't have a compositor with wl_output new enough (version 2 or newer). Signed-off-by: Jonny Lamb Reviewed-by: Daniel Stone --- clients/weston-info.c | 32 ++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff -

Re: [PATCH weston] weston-info: display output scale

2015-12-16 Thread Pekka Paalanen
On Wed, 16 Dec 2015 19:19:55 + Jonny Lamb wrote: > Fall back to not showing anything as before if we don't have a > compositor with wl_output new enough (version 2 or newer). > > Signed-off-by: Jonny Lamb > --- > clients/weston-info.c | 25 +++-- > 1 file changed, 23 in

[PATCH weston] weston-info: display output scale

2015-12-16 Thread Jonny Lamb
Fall back to not showing anything as before if we don't have a compositor with wl_output new enough (version 2 or newer). Signed-off-by: Jonny Lamb --- clients/weston-info.c | 25 +++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/clients/weston-info.c b/cli

[PATCH 3/8] weston-info: report presentation clock

2014-09-23 Thread Louis-Francis Ratté-Boulianne
From: Pekka Paalanen Signed-off-by: Pekka Paalanen v3 Reviewed-by: Mario Kleiner --- Makefile.am | 3 ++ clients/weston-info.c | 81 +++ 2 files changed, 84 insertions(+) diff --git a/Makefile.am b/Makefile.am index b1dcc21..6a91a8f 1

[PATCH 3/8] weston-info: report presentation clock

2014-09-15 Thread Louis-Francis Ratté-Boulianne
From: Pekka Paalanen Signed-off-by: Pekka Paalanen v3 Reviewed-by: Mario Kleiner --- Makefile.am | 3 ++ clients/weston-info.c | 81 +++ 2 files changed, 84 insertions(+) diff --git a/Makefile.am b/Makefile.am index b1dcc21..6a91a8f 1

[PATCH weston 3/3] weston-info: Display the name from the new wl_output.name event

2014-04-30 Thread Neil Roberts
If the compositor supports version 3 of the wl_output interface and sends a name event then this will now be displayed in the info. --- clients/weston-info.c | 39 ++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/clients/weston-info.c b/clients/

Re: [PATCH weston] weston-info: fix log message typo

2014-04-21 Thread Kristian Høgsberg
On Fri, Apr 18, 2014 at 09:30:07AM -0700, U. Artie Eoff wrote: > Signed-off-by: U. Artie Eoff > --- Committed, thanks. Kristian > clients/weston-info.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/clients/weston-info.c b/clients/weston-info.c > index 147dc48..df869

Re: [PATCH weston] weston-info: fix log message typo

2014-04-19 Thread Pekka Paalanen
On Fri, 18 Apr 2014 09:30:07 -0700 "U. Artie Eoff" wrote: > Signed-off-by: U. Artie Eoff > --- > clients/weston-info.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/clients/weston-info.c b/clients/weston-info.c > index 147dc48..df869e3 100644 > --- a/clients/weston-i

[PATCH weston] weston-info: fix log message typo

2014-04-18 Thread U. Artie Eoff
Signed-off-by: U. Artie Eoff --- clients/weston-info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/weston-info.c b/clients/weston-info.c index 147dc48..df869e3 100644 --- a/clients/weston-info.c +++ b/clients/weston-info.c @@ -225,7 +225,7 @@ print_output_info(void

[RFCv3 weston 08/15] weston-info: report presentation clock

2014-03-07 Thread Pekka Paalanen
From: Pekka Paalanen Signed-off-by: Pekka Paalanen --- Makefile.am | 3 ++ clients/weston-info.c | 81 +++ 2 files changed, 84 insertions(+) diff --git a/Makefile.am b/Makefile.am index 998dc54..79e6a7d 100644 --- a/Makefile.am +++ b/M

[PATCH weston 2/2] build: fix weston-info CFLAGS

2014-02-03 Thread ppaalanen
CLIENT_CFLAGS. Signed-off-by: Pekka Paalanen --- I see most demo apps have *only* CLIENT_CFLAGS which makes them not have GCC_CFLAGS, but this change makes weston-info to be compiled with GCC_CFLAGS. Which way should it be? --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b

[PATCH weston 03/10] weston-info: Report the seat name provided by the compositor

2013-05-31 Thread Rob Bradford
From: Rob Bradford --- clients/weston-info.c | 13 - 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/clients/weston-info.c b/clients/weston-info.c index a5db02a..03b4c40 100644 --- a/clients/weston-info.c +++ b/clients/weston-info.c @@ -84,6 +84,7 @@ struct seat_info {

Re: [PATCH 1/2] weston-info: remove timerfd termination hack

2012-08-15 Thread Kristian Høgsberg
On Wed, Aug 15, 2012 at 09:57:23PM +0200, Philipp Brüschweiler wrote: > Use wl_display_roundtrip to listen exactly as long as necessary. Heh, all this bikeshedding about the output format and I didn't catch this :-) This looks right now. Kristian > --- > clients/weston-info.c | 93 > ++---

[PATCH 2/2] weston-info: an output can have multiple modes

2012-08-15 Thread Philipp Brüschweiler
--- clients/weston-info.c | 59 +-- 1 Datei geändert, 38 Zeilen hinzugefügt(+), 21 Zeilen entfernt(-) diff --git a/clients/weston-info.c b/clients/weston-info.c index d4b70da..95e45b1 100644 --- a/clients/weston-info.c +++ b/clients/weston-info.c @@

[PATCH 1/2] weston-info: remove timerfd termination hack

2012-08-15 Thread Philipp Brüschweiler
Use wl_display_roundtrip to listen exactly as long as necessary. --- clients/weston-info.c | 93 ++- 1 Datei geändert, 11 Zeilen hinzugefügt(+), 82 Zeilen entfernt(-) diff --git a/clients/weston-info.c b/clients/weston-info.c index 4604bbf..d4b70da

[PATCH] weston-info: client that print out information about the running compositor

2012-08-15 Thread Philipp Brüschweiler
(+) create mode 100644 clients/weston-info.c diff --git a/clients/.gitignore b/clients/.gitignore index b43992b..014c0fb 100644 --- a/clients/.gitignore +++ b/clients/.gitignore @@ -29,3 +29,4 @@ editor text-protocol.c text-client-protocol.h keyboard +weston-info diff --git a/clients/Makefile.am b