Re: [PATCH v3 wayland-protocols] virtual-keyboard: Add new virtual keyboard protocol

2018-06-22 Thread Dorota Czaplejewicz
On Fri, 22 Jun 2018 12:36:16 -0400 Simon Ser wrote: > On June 22, 2018 4:20 PM, Dorota Czaplejewicz > wrote: > > Provides the ability to emulate keyboards by applications. Complementary to > > input-method protocol. > > > > The interface is a mirror copy of wl_keyboard, with removed serials,

[PATCH weston] man: remove redundant word in weston.ini(5)

2018-06-22 Thread Matheus Santana
Signed-off-by: Matheus Santana --- man/weston.ini.man | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/weston.ini.man b/man/weston.ini.man index 027eae0..02c9b03 100644 --- a/man/weston.ini.man +++ b/man/weston.ini.man @@ -468,7 +468,7 @@ denoting the scaling multiplier

Re: [PATCH v3 wayland-protocols] virtual-keyboard: Add new virtual keyboard protocol

2018-06-22 Thread Simon Ser
On June 22, 2018 4:20 PM, Dorota Czaplejewicz wrote: > Provides the ability to emulate keyboards by applications. Complementary to > input-method protocol. > > The interface is a mirror copy of wl_keyboard, with removed serials, and > added seat binding. > --- > Hi, > > this patch is another

Re: Dual display in clone mode or extended mode with Weston

2018-06-22 Thread Konstantin Kharlamov
On 21.06.2018 21:44, Matheus Santana wrote: On Thu, Jun 21, 2018 at 5:11 AM, Pekka Paalanen > wrote: On Wed, 13 Jun 2018 17:40:59 +0530 Ashvini Deshmukh mailto:ashvini2...@gmail.com>> wrote: > Hello All, > > I have read queries for dual

[RFC PATCH libinput] tools: run list-quirks from the git data when running from the builddir

2018-06-22 Thread Peter Hutterer
I'd like some comment on this from someone who knows this stuff better than I do. The main goal is to have the same binary default to different search paths, depending whether it's the installed version or the one run from the build directory. This is the only solution I could come up with and it

[PATCH 3/5] compositor-drm: add support for CTM property

2018-06-22 Thread harsha.manjulamallikarjun
From: Harsha M M Implement support for setting color transformation matrix using drm CTM property. Signed-off-by: Harsha M M --- libweston/compositor-drm.c | 66 ++ 1 file changed, 66 insertions(+) diff --git a/libweston/compositor-drm.c

[PATCH 4/5] tests: add test for setting gamma

2018-06-22 Thread harsha.manjulamallikarjun
From: Harsha M M Signed-off-by: Harsha M M --- Makefile.am| 7 +- tests/gamma-test.c | 248 + 2 files changed, 254 insertions(+), 1 deletion(-) create mode 100644 tests/gamma-test.c diff --git a/Makefile.am b/Makefile.am index

[PATCH 1/5] compositor-drm: Implement support for GAMMA_LUT drm property

2018-06-22 Thread harsha.manjulamallikarjun
From: Harsha M M drmModeCrtcSetGamma is a legacy now. Use the generic drm property to set Gamma. If GAMMA_LUT is not supported then legacy api will be used. Signed-off-by: Harsha M M --- libweston/compositor-drm.c | 83 ++ 1 file changed, 77

[PATCH 2/5] libweston: provide support to set color transformation matrix for output

2018-06-22 Thread harsha.manjulamallikarjun
From: Harsha M M Signed-off-by: Harsha M M --- libweston/compositor.h | 12 1 file changed, 12 insertions(+) diff --git a/libweston/compositor.h b/libweston/compositor.h index c2c40ee..1e47721 100644 --- a/libweston/compositor.h +++ b/libweston/compositor.h @@ -270,6 +270,18 @@

[PATCH 5/5] tests: add test for color transformation matrix

2018-06-22 Thread harsha.manjulamallikarjun
From: Harsha M M Signed-off-by: Harsha M M --- Makefile.am | 8 ++- tests/ctm-test.c | 210 +++ 2 files changed, 217 insertions(+), 1 deletion(-) create mode 100644 tests/ctm-test.c diff --git a/Makefile.am b/Makefile.am index

[PATCH 0/5] Implement support for drm properties "GAMMA_LUT" and "CTM"

2018-06-22 Thread harsha.manjulamallikarjun
From: Harsha M M current drm backend uses drmModeCrtcSetGamma to set the gamma look up table. This api is a legacy now. DRM backend should support setting of gamma look up table through GAMMA_LUT property to keep up with the latest DRM. DRM has support for setting color transformation matrix.

Re: [PATCH 2/5] libweston: provide support to set color transformation matrix for output

2018-06-22 Thread Matheus Santana
Just some style suggestions... On Fri, Jun 22, 2018 at 10:23 AM, wrote: > From: Harsha M M > > Signed-off-by: Harsha M M > --- > libweston/compositor.h | 12 > 1 file changed, 12 insertions(+) > > diff --git a/libweston/compositor.h b/libweston/compositor.h > index

Re: [PATCH 0/5] Implement support for drm properties "GAMMA_LUT" and "CTM"

2018-06-22 Thread Matheus Santana
Hi Harsha, I am unable to run the tests you introduced. Tests execution gets stuck after reporting success for surface-global-test. Is it necessary building weston against any newer libraries versions for running the new tests? Thanks, Matheus On Fri, Jun 22, 2018 at 10:23 AM, wrote: >

[PATCH v3 wayland-protocols] virtual-keyboard: Add new virtual keyboard protocol

2018-06-22 Thread Dorota Czaplejewicz
Provides the ability to emulate keyboards by applications. Complementary to input-method protocol. The interface is a mirror copy of wl_keyboard, with removed serials, and added seat binding. --- Hi, this patch is another improvement to the previously sent virtual keyboard protocol. Changes