[PATCH v2 weston 10/16] compositor-drm: Track all plane types

2015-06-22 Thread Daniel Stone
Retain drm_plane tracking objects for all actual DRM planes when using universal planes, not just overlay planes. These are currently unused. v2: Rename sprite_list to plane_list. Signed-off-by: Daniel Stone dani...@collabora.com --- src/compositor-drm.c | 37

[PATCH v2 weston 09/16] compositor-drm: Add universal plane awareness

2015-06-22 Thread Daniel Stone
Add awareness of, rather than support for, universal planes. Activate the client cap when we start if possible, and if this is activated, studiously ignore non-overlay planes. For now. v2: Add asserts to be careful. Bump libdrm dependency version. Signed-off-by: Daniel Stone

[PATCH v2 weston 11/16] compositor-drm: Track cursor_plane with a drm_plane

2015-06-22 Thread Daniel Stone
Change the type of cursor_plane from a weston_plane (base tracking structure) to a drm_plane (wrapper containing additional DRM-specific details), and make it a dynamically-allocated pointer. Using the standard drm_plane allows us to reuse code which already deals with drm_planes, e.g. a common

[PATCH v2 weston 08/16] compositor-drm: Refactor sprite create/destroy into helpers

2015-06-22 Thread Daniel Stone
From: Pekka Paalanen pekka.paala...@collabora.co.uk This moves the single sprite creation code from create_sprites() into a new function. The readability clean-up is small, but my intention is to write an alternate version of create_sprites(), and sharing the single sprite creation code is

[PATCH v2 weston 03/16] compositor-drm: Refactor getting current mode into a new function

2015-06-22 Thread Daniel Stone
From: Pekka Paalanen pekka.paala...@collabora.co.uk Makes create_output_for_connector() slightly easier to read. Signed-off-by: Pekka Paalanen pekka.paala...@collabora.co.uk Signed-off-by: Daniel Stone dani...@collabora.com --- src/compositor-drm.c | 41 ++---

[PATCH v2 weston 13/16] compositor-drm: Retain DRM FB for cursor plane

2015-06-22 Thread Daniel Stone
We already keep a GBM BO for the cursor plane, but also keep a DRM FB, so we can reuse it for atomic modesetting. Signed-off-by: Daniel Stone dani...@collabora.com --- src/compositor-drm.c | 28 ++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git

question about wayland protocal compatibility between 32bit client and 64bit server

2015-06-22 Thread �O明勇
Dear Wayland developers: I’m a soft engineer from MStar. I’m now considering the possibility of integrating wayland into our software. Before doing that, I need to make sure that wayland compositor could serve both 32bit client and 64bit client at the same time. That’s to say -- wayland

Re: question about wayland protocal compatibility between 32bit client and 64bit server

2015-06-22 Thread Daniel Stone
Hi Tommy, On 22 June 2015 at 15:17, tommy.sun (孫明勇) tommy@mstarsemi.com wrote: I’m a soft engineer from MStar. I’m now considering the possibility of integrating wayland into our software. Before doing that, I need to make sure that wayland compositor could serve both 32bit client and

[PATCH v2 weston 15/16] compositor-drm: Atomic modesetting support

2015-06-22 Thread Daniel Stone
Building on the drm_plane work from earlier, use the new atomic modesetting interface where available, including enabling overlay planes by default. It is still highly experimental, but manages to at least prove the overall atomic modesetting and blob property interfaces. This patch was jointly

[PATCH v2 weston 12/16] compositor-drm: Don't flip planes from other outputs

2015-06-22 Thread Daniel Stone
If a plane is currently active on another output, don't steal it away. Signed-off-by: Daniel Stone dani...@collabora.com --- src/compositor-drm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/compositor-drm.c b/src/compositor-drm.c index c9071d2..fa520bc 100644 ---

[PATCH v2 weston 07/16] compositor-drm: Rename drm_sprite to drm_plane

2015-06-22 Thread Daniel Stone
We make the differentiation where planes are an abstract framebuffer with a position within a CRTC/output, and sprites are special cases of planes that are neither the primary (base/framebuffer) nor cursor plane. drm_sprite, OTOH, contains nothing that's actually specific to sprites, and we end

[PATCH v2 weston 14/16] compositor-drm: Track primary plane with a drm_plane

2015-06-22 Thread Daniel Stone
Use a real drm_plane to back the primary plane, displacing output-current and output-next to their plane-tracked equivalents. v2: Remove extra output-{current,next} members. Add primary plane to plane_list so it gets cleaned up. Signed-off-by: Daniel Stone dani...@collabora.com ---

[PATCH v2 weston 16/16] compositor-drm: Track currently-active view for planes

2015-06-22 Thread Daniel Stone
Track the view a plane is currently displaying, so we can avoid needlessly recreating buffers. Signed-off-by: Daniel Stone dani...@collabora.com --- src/compositor-drm.c | 123 +++ 1 file changed, 104 insertions(+), 19 deletions(-) diff --git

[PATCH v2 weston 06/16] compositor-drm: Refactor code into cursor_bo_update()

2015-06-22 Thread Daniel Stone
From: Pekka Paalanen pekka.paala...@collabora.co.uk Cut a chunk of code out from drm_output_set_cursor() and form a new function for writing a cursor bo data from a weston_view with a wl_shm buffer. Add more asserts to verify the assumptions in there. v2: Use

[PATCH v2 weston 05/16] compositor-drm: Fix cursor view size check

2015-06-22 Thread Daniel Stone
Instead of testing against a hardcoded 64x64 pixel size to see if a view is suitable for promotion to a cursor plane, use our cursor_width and cursor_height variables. Signed-off-by: Daniel Stone dani...@collabora.com --- src/compositor-drm.c | 7 --- 1 file changed, 4 insertions(+), 3

[PATCH v2 weston 01/16] compositor-drm: Refactor initial mode out of create_output

2015-06-22 Thread Daniel Stone
From: Pekka Paalanen pekka.paala...@collabora.co.uk Refactor the code for choosing the initial mode for an output from create_output_for_connector() to drm_output_choose_initial_mode(). This makes create_output_for_connector() slightly easier to read. v2: Document everything. Signed-off-by:

Re: [PATCH 04/10] compositor-drm: Allow weston_output_mode_switch_to_native() to work.

2015-06-22 Thread Derek Foreman
Reviewed-By: Derek Foreman der...@osg.samsung.com On 21/06/15 02:25 PM, Mario Kleiner wrote: Initialize output-native_mode with the initially chosen mode for an output, so weston_output_mode_switch_to_native() has something to work with and can switch back from temporary selected modes to the

Re: [PATCH libinput v2 5/5] libinput: add orientation and size of touch point and pressure to the API

2015-06-22 Thread Peter Hutterer
On Mon, Jun 22, 2015 at 12:37:43PM +0200, Andreas Pokorny wrote: Hi, On Mon, Jun 22, 2015 at 3:37 AM, Peter Hutterer peter.hutte...@who-t.net wrote: On Fri, Jun 19, 2015 at 03:24:38PM +0200, Andreas Pokorny wrote: + * */ + if (orientation_info) { + if

Re: [PATCH 01/14] tests: test set for ivi-surface normal use case with helper client

2015-06-22 Thread Jon A. Cruz
On 06/21/2015 11:33 PM, Nobuhiko Tanibata wrote: From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp These tests are implemented on test suite framework, which provides helper client. Following features are tested for ivi-surface - orientation - dimension - position - destination

答复: question about wayland protocal compatibility between 32bit client and 64bit server

2015-06-22 Thread 孫明勇
Dear Daniel: Appreciate for your great help! -邮件原件- 发件人: Daniel Stone [mailto:dan...@fooishbar.org] 发送时间: 2015年6月23日 0:46 收件人: tommy.sun (孫明勇) 抄送: wayland-devel@lists.freedesktop.org; security 主题: Re: question about wayland protocal compatibility between 32bit client and 64bit

Re: [PATCH weston 04/11] make the backends compositor-neutral

2015-06-22 Thread Bill Spitzak
It seems like prev On Mon, Jun 22, 2015 at 1:02 PM, Giulio Camuffo giuliocamu...@gmail.com wrote: The backends used to have lots of code dealing with weston specific configs. To allow them to be used by other compositors with their own configurations remove all the usage of weston_config

[PATCH 03/14] tests: test set for ivi-surface with bad condition in server side

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp These tests are implemented on test suite framework, which provides internal method validation. Following features are tested for ivi-surface, - destination_rectangle with bad parameter - orientation with bad parameter - dimension with

[PATCH 01/14] tests: test set for ivi-surface normal use case with helper client

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp These tests are implemented on test suite framework, which provides helper client. Following features are tested for ivi-surface - orientation - dimension - position - destination rectangle - source rectangle Signed-off-by: Nobuhiko

[PATCH 02/14] tests: test set for ivi-surface bad condition with helper client

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp These tests are implemented on test suite framework, which provides helper client. Following features are tested, - ivi_layout_runner with basic_test_names[] - surface with bad opacity - destroy ivi/wl_surface and call get_surface -

[PATCH 12/13] ivi-shell: bugfix, update event_mask when new propertiy is not same as before.

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp In previous code, it sends notification whenever setter calls. This patch fixs that notification will not happens if there is no change of properties by setter. Signed-off-by: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp

[PATCH 10/13] ivi-shell: add interface to get screen ID

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp This interface is required for user to manage screens per IDs. Signed-off-by: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Acked-by: Pekka Paalanen pekka.paala...@collabora.co.uk --- ivi-shell/ivi-layout-export.h | 7 +++

[PATCH 13/13] ivi-shell: rename to ivi_layout_layer_destroy()

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp remove is not proper name beacause it destorys a layer. The name of the api is changed from layer_remove to layer_destroy. Signed-off-by: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Reviewed-by: Pekka Paalanen

[PATCH 09/13] ivi-shell: add new method to remove a callback to get notificaiton of ivi_layer property changes.

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp To get property changes of ivi_layer, callbacks can be registered. However there was no API to remove a callback rather than removing all callbacks by using layer_remove_notification. layer_remove_notification_by_callback can do it.

[PATCH 06/13] ivi-shell: fix ivi_shell_surface lifetime

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp ivi_shell_surface lifetime shall follow the ivi_surface protocol object lifetime, and frees the ivi-id by destroying the ivi_layout_surface from both wl_surface and ivi_surface destruction as the protocol specifies. Signed-off-by:

[PATCH 04/13] ivi-shell: bugfix, SEVG by adding NULL check in ivi_layout_get_screen_resolution

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Signed-off-by: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Acked-by: Pekka Paalanen pekka.paala...@collabora.co.uk --- ivi-shell/ivi-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 05/13] ivi-shell: make ivi_layout_surface destruction explicit

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Signed-off-by: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Reviewed-by: Pekka Paalanen pekka.paala...@collabora.co.uk --- ivi-shell/ivi-layout-private.h | 3 ++- ivi-shell/ivi-layout.c | 54

[PATCH 02/13] ivi-shell: bugfix, check limitation of ivi_layout_layer opacity

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Signed-off-by: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Acked-by: Pekka Paalanen pekka.paala...@collabora.co.uk --- ivi-shell/ivi-layout.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[PATCH 08/13] ivi-shell: add new method to remove a callback to get notification of ivi_surface property changes.

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp To get property changes of ivi_surface, callbacks can be registered. However there was no API to remove a callback rather than remove all callbacks by using surface_remove_notification. surface_remove_notification_by_callback can do it.

[PATCH 07/13] ivi-shell: bugfix, add ref_count to ivi_layout_layer

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp if a controller calls ivi_layout_layer_create_with_demenstion with a ID which is already created before, the API returns exist ivi_layer. However addtionally, it shall count up ref count to destroy ivi_layer when ref count is 0. The

[PATCH 11/13] ivi-shell: bugfix, send notification when properties are changed according to event mask.

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Previous code sends notification without event mask. So the notification Signed-off-by: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Reviewed-by: Pekka Paalanen pekka.paala...@collabora.co.uk --- ivi-shell/ivi-layout.c | 6

ivi-shell test suite and bugfixes found by these test cases

2015-06-22 Thread Nobuhiko Tanibata
Hi, I am proposing a set of patches; ivi-shell test suite and bug fixes found by these test cases. This test suite is implemented based on following test framework. http://lists.freedesktop.org/archives/wayland-devel/2015-March/020932.html This test suite consists of four parts to verify

[PATCH 01/13] ivi-shell: bugfix, check limitation of ivi_layout_surface opacity

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Signed-off-by: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp Acked-by: Pekka Paalanen pekka.paala...@collabora.co.uk --- ivi-shell/ivi-layout.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[PATCH 11/14] tests: test set for ivi-shell notification normal use case with helper client

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp These tests are implemented on test suite framework, which provides helper client. Following features are tested, - notification of adding ivi-surface - notification of ivi-surface configure - notification of creating ivi-surface

[PATCH 10/14] tests: make the test context persistent

2015-06-22 Thread Nobuhiko Tanibata
From: Nobuhiko Tanibata nobuhiko_tanib...@xddp.denso.co.jp The TESTs in ivi_layout-test.c may have several server-side parts (RUNNER_TEST in ivi_layout-test-plugin.c) each. Sometimes we need to carry state from one RUNNER_TEST to another within one TEST, but not across multiple TESTs. The correct

Re: Wayland Relative Pointer API Progress

2015-06-22 Thread x414e54
Hi I have been away for a while and quite busy so I did not get a chance to response. On Tue, Apr 28, 2015 at 3:46 AM, Bill Spitzak spit...@gmail.com wrote: No, I absolutely 100% disagree. Synchronized updating so things don't vibrate or shift is more important than FPS. It is even stated as

Re: [PATCH v2 2/2] cursor: Update printed license from MIT X11 to MIT Expat

2015-06-22 Thread Pekka Paalanen
On Mon, 15 Jun 2015 12:36:29 +0300 Pekka Paalanen ppaala...@gmail.com wrote: On Fri, 12 Jun 2015 16:44:16 -0700 Bryce Harrington br...@osg.samsung.com wrote: The code generates a cursor-data.h file, with licensing information. Change this from the MIT X11 license to MIT Expat license for

Re: [PATCH weston] compositor: add missing help text

2015-06-22 Thread Pekka Paalanen
On Fri, 12 Jun 2015 18:26:02 +0900 JoonCheol Park joonch...@gmail.com wrote: The headless-backend.so was missing in available backend list Signed-off-by: JoonCheol Park joonch...@gmail.com --- src/compositor.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/compositor.c

Re: [PATCH weston] compositor: Add missing help text

2015-06-22 Thread Pekka Paalanen
On Wed, 10 Jun 2015 16:57:09 -0500 Derek Foreman der...@osg.samsung.com wrote: Help messages were missing for some command line options. Signed-off-by: Derek Foreman der...@osg.samsung.com --- src/compositor.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[PATCH libinput v3 5/5] libinput: add orientation and size of touch point and pressure to the API

2015-06-22 Thread Andreas Pokorny
This change adds four new properties to touch events. major: diameter of the touch ellipse along the major axis minor: diameter perpendicular to major axis pressure: a pressure value mapped into the range [0,1] orientation: the angle between major and the x axis Those values are optionally

[PATCH libinput v3 2/5] litest: add a generic multitouch screen

2015-06-22 Thread Andreas Pokorny
Adds a device with various touch related axes and respective device features to litest. Signed-off-by: Andreas Pokorny andreas.poko...@canonical.com --- test/Makefile.am | 1 + test/litest-touch-screen.c | 135 + test/litest.c

[PATCH libinput v3 1/5] litest: add axis_replacement from tablet branch

2015-06-22 Thread Andreas Pokorny
This change adds strict axis_replacemnt and litest_touch_move_extended and litest_touch_down_extended to simulate changes to other axes during touch down and move events. Signed-off-by: Andreas Pokorny andreas.poko...@canonical.com --- test/litest.c | 95

Re: [PATCH libinput v2 5/5] libinput: add orientation and size of touch point and pressure to the API

2015-06-22 Thread Andreas Pokorny
Hi, On Mon, Jun 22, 2015 at 3:37 AM, Peter Hutterer peter.hutte...@who-t.net wrote: On Fri, Jun 19, 2015 at 03:24:38PM +0200, Andreas Pokorny wrote: + * */ + if (orientation_info) { + if (orientation_info-maximum == 1 + orientation_info-maximum ==

Re: [PATCH libinput 1/5] test: replace tap config with helper function

2015-06-22 Thread Hans de Goede
Hi, On 22-06-15 06:54, Peter Hutterer wrote: No functional change, other than that we check for status codes now too. In tests that don't specifically check the interface itself, a short enable_tap() or disable_tap() is a lot more obvious to parse for the reader. Signed-off-by: Peter Hutterer

Re: [PATCH libinput] udev: prepend the libinput group with the product string

2015-06-22 Thread Hans de Goede
Hi, On 22-06-15 04:03, Peter Hutterer wrote: Multiple devices plugged into the same USB hub have the same PHYS path and are assigned to the same group. Prepend the content of the PRODUCT env to the phys path, this at least ensures that different devices are never grouped together.

[PATCH weston 03/11] compositor: move the main() to a new weston.c file

2015-06-22 Thread Giulio Camuffo
This commits starts to separate the libweston code from the weston specific code. As such, the main() is moved, together with signals handling and configuration handling. --- Makefile.am | 1 + src/compositor.c | 801 +--- src/weston.c |

[PATCH weston 00/11] libweston

2015-06-22 Thread Giulio Camuffo
Hi, This is the new revision of libweston, with quite many changes after Pekka's comments: - no more weston_compositor_init/fini, but weston_compositor_create/destroy. in a far future we may manage to make weston_compositor an opaque struct. - all the backends are now loaded through a common

[PATCH weston 02/11] compositor: add API to manage compositor instances

2015-06-22 Thread Giulio Camuffo
This commit adds three new exported functions: - weston_compositor_create() returns a new weston_compositor instance, initializing it as the now removed weston_compositor_init() did. - weston_compositor_exit(compositor) asks the compositor to tear down by calling the compositor's exit vfunc which

[PATCH weston 04/11] make the backends compositor-neutral

2015-06-22 Thread Giulio Camuffo
The backends used to have lots of code dealing with weston specific configs. To allow them to be used by other compositors with their own configurations remove all the usage of weston_config from the backends code and move it in weston.c. The backends are now initialized with the new

[PATCH weston 11/11] configure: add an option to allow building only the libraries

2015-06-22 Thread Giulio Camuffo
the --enable/disable-weston-binaries enables or disables the creation of 'weston', 'weston-launch' and all the binaries that are installed in $prefix/lib/libexec. This allows, together with --enable-clients, to only build the libraries, making possible to build and install different libweston

[PATCH weston 05/11] compositor: remove the weston_config field from weston_compositor

2015-06-22 Thread Giulio Camuffo
Instead of the central weston_config pointer we now store it in some module-specific pointers. This way we can remove them one by one. --- desktop-shell/shell.c | 10 +--- desktop-shell/shell.h | 1 + fullscreen-shell/fullscreen-shell.c | 3 ++-

[PATCH weston 07/11] libweston: allow compositors to define the logging behavior

2015-06-22 Thread Giulio Camuffo
--- Makefile.am | 2 +- src/compositor.h | 5 ++-- src/log.c| 69 ++--- src/weston.c | 78 4 files changed, 89 insertions(+), 65 deletions(-) diff --git a/Makefile.am

[PATCH weston 09/11] libweston: handle the screenshoot and record bindings in weston.c

2015-06-22 Thread Giulio Camuffo
Move the code launching the screenshooter client and implementing the screenshot protocol out of libweston, and make screenshooter.c a generic way to hook screenshoot protocols into weston. A new header weston.h is added, with an entry point for the shells to init the screenshooter. ---

[PATCH weston 10/11] text: build the text-backend in weston

2015-06-22 Thread Giulio Camuffo
It uses the weston_client_launch API, which is not available in libweston. --- Makefile.am | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile.am b/Makefile.am index b1d1044..2d24bcc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -79,7 +79,6 @@

[PATCH weston 06/11] build a libweston.so used by the weston binary

2015-06-22 Thread Giulio Camuffo
The library is versioned, so a -N is appended to its name, e.g. libweston-1.so. The same is done for the pc file, the include and lib/weston dirs. This allows multiple libweston versions to be installed together. --- Makefile.am | 59 ++-

[PATCH weston 08/11] libweston: move the child process launching and monitoring to weston

2015-06-22 Thread Giulio Camuffo
libweston still used those functions internally, so it was not linkable yet by other compositors. --- src/compositor.c | 144 -- src/weston.c | 145 +++ 2 files changed, 145 insertions(+),

[PATCH libinput 1/2] touchpad: only send most recent edge delta when triggering threshold

2015-06-22 Thread Peter Hutterer
When edge scrolling is triggered by exceeding the motion threshold (5mm) we sent the whole delta as the first scroll event, causing a big jump. Instead, send only the current delta. This effectively introduces a 5mm dead zone when edge scrolling, still better than the jump.

[PATCH libinput 2/2] touchpad: reduce edge scroll motion threshold to 3mm

2015-06-22 Thread Peter Hutterer
Reduce the dead zone/initial jump https://bugs.freedesktop.org/show_bug.cgi?id=90990 Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- src/evdev-mt-touchpad-edge-scroll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evdev-mt-touchpad-edge-scroll.c

Re: [PATCH weston 04/11] make the backends compositor-neutral

2015-06-22 Thread Giulio Camuffo
2015-06-23 3:52 GMT+03:00 Bill Spitzak spit...@gmail.com: It seems like prev On Mon, Jun 22, 2015 at 1:02 PM, Giulio Camuffo giuliocamu...@gmail.com wrote: The backends used to have lots of code dealing with weston specific configs. To allow them to be used by other compositors with their

Re: [PATCH weston 2/2] desktop-shell: remove screensaver support

2015-06-22 Thread Pekka Paalanen
On Tue, 16 Jun 2015 14:07:32 +0300 Pekka Paalanen ppaala...@gmail.com wrote: From: Pekka Paalanen pekka.paala...@collabora.co.uk This is a follow-up for the patch that removed weston-screensaver. The aim is to clean up shell.c a little by removing non-essential components. Vanilla Weston