Re: [PATCH weston 2/3] gl-renderer: Fix initial upload of SHM buffer as texture

2013-06-25 Thread Kristian Høgsberg
On Fri, Jun 07, 2013 at 04:52:45PM +0300, Ander Conselvan de Oliveira wrote: > The fix to not call glTexImage2D() on every attach does not properly > set the texture damage region appropriately when the surface has a > buffer transform with 90 or 270 degrees rotation, since it would simply > multip

Re: Two XML files in weston are not distributed in tarballs

2013-06-25 Thread Kristian Høgsberg
On Mon, Jun 24, 2013 at 07:26:51PM +0200, Sven Joachim wrote: > Hello, > > I have noted that the files subsurface.xml and text-cursor-position.xml > are not included in EXTRA_DIST in protocol/Makefile.am, and it seems to > me that they should be included in weston tarballs. That's reasonable, fix

Re: [PATCH]: src/.gitignore: add spring-tool to .gitignore

2013-06-25 Thread Kristian Høgsberg
On Mon, Jun 24, 2013 at 05:09:21PM +0200, m...@laposte.net wrote: > From 48b5302d7415e35c7f38b89132d3624817450335 Mon Sep 17 00:00:00 2001 > From: Nathan Reboud > Date: Mon, 24 Jun 2013 16:12:55 +0200 > Subject: src/.gitignore: add spring-tool to .gitignore Thanks, applied. Kristian > --- > src

[PATCH weston v2 4/4] man: Add documentation for output seat confining

2013-06-25 Thread Rob Bradford
From: Rob Bradford v2: Add some explanation about the default seat --- man/weston.ini.man | 9 + 1 file changed, 9 insertions(+) diff --git a/man/weston.ini.man b/man/weston.ini.man index c3e5747..9c22b3f 100644 --- a/man/weston.ini.man +++ b/man/weston.ini.man @@ -288,6 +288,15 @@ be o

[PATCH weston v2 3/4] compositor-drm: Enable seat constraining when configured in weston.ini

2013-06-25 Thread Rob Bradford
From: Rob Bradford This change tweaks weston_pointer_clamp to take into consideration if a seat is constrained to a particular output by only considering the pointer position valid if it is within the output we a constrained to. This function is also used for the initial warping of the pointer wh

[PATCH weston v2 2/4] input: Add weston_pointer_clamp function to ensure pointer visible

2013-06-25 Thread Rob Bradford
From: Rob Bradford This refactors the code out from clip_pointer_motion into a function of its own which can then be used elsewhere to clamp the pointer coordinates to the range of the outputs. This change also makes the caller of clip_pointer_motion use this new function. --- src/compositor.h

[PATCH weston v2 1/4] udev-seat: Refactor out seat lookup and possible creation

2013-06-25 Thread Rob Bradford
From: Rob Bradford This change spills the code for looking up a seat by name and then potentially creating it if it doesn't exist into a new function called udev_seat_get_named. This change allows us to reuse this code when looking up the seat when parsing seat constraints per output. --- src/u

Re: minimized and stick windows

2013-06-25 Thread Rafael Antognolli
On Thu, Jun 13, 2013 at 5:42 PM, Bill Spitzak wrote: > sardemff7+wayl...@sardemff7.net wrote: > >>> This is a requirement so that non-trivial clients can be written >>> that are not forced to blink the transient windows to change their >>> parenting. >> >> >> Do you have a use case for this scenar

[PATCH] build: disabling the mtdev library support

2013-06-25 Thread mchalain [marc.chal...@gmail.com]
From: mchalain This patch creates the --enable-mtdev configure's option with "auto" as default value. If mtdv library is not available the mtdev functions are replaced by empty macros. To simplify the Makefile.am evdev source files are placed inside a static library. The other reason of this modi

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

2013-06-25 Thread sardemff7+wayland
On 25/06/2013 17:59, Marc Chalain wrote: 2013/6/25 On 25/06/2013 17:28, mchalain [marc.chal...@gmail.com] wrote: From: mchalain AC_CHECK_LIB([jpeg], [jpeg_CreateDecompress], have_jpeglib=yes) if test x$have_jpeglib = xyes; then JPEG_LIBS="-ljpeg" @@ -259,8 +269,8 @@ AS_IF

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

2013-06-25 Thread Marc Chalain
2013/6/25 > On 25/06/2013 17:28, mchalain [marc.chal...@gmail.com] wrote: > >> From: mchalain >> > >AC_CHECK_LIB([jpeg], [jpeg_CreateDecompress], have_jpeglib=yes) >> if test x$have_jpeglib = xyes; then >> JPEG_LIBS="-ljpeg" >> @@ -259,8 +269,8 @@ AS_IF([test "x$enable_resize_optimiza

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

2013-06-25 Thread sardemff7+wayland
On 25/06/2013 17:28, mchalain [marc.chal...@gmail.com] wrote: From: mchalain This patch creates the --enable-mtdev configure's option with "auto" as default value. If mtdv library is not available the mtdev functions are replaced by empty macros. To simplify the Makefile.am evdev source files a

[PATCH] build: disabling the mtdev library support

2013-06-25 Thread mchalain [marc.chal...@gmail.com]
From: mchalain This patch creates the --enable-mtdev configure's option with "auto" as default value. If mtdv library is not available the mtdev functions are replaced by empty macros. To simplify the Makefile.am evdev source files are placed inside a static library. The other reason of this modi

[PATCH] fbdev: initialization of varinfo reorder and storage

2013-06-25 Thread mchalain [marc.chal...@gmail.com]
From: mchalain Currently the frame buffer initalization is uncomplete and the reenable uses different values as the startup. To set the frame buffer with values and to be sure of the configuration's result, this patch reorder the initialization sequence. The new order is: - read the weston.ini t

Re: [PATCH RFC] Allow configuration of output positions

2013-06-25 Thread Pekka Paalanen
On Thu, 13 Jun 2013 21:59:55 +0200 Florian Scandella wrote: > > Hi, > > Can someone pls have a look at this patch? > > I implemented configuration options for relativ output positioning in > weston.ini. Currently the implementation is private to the drm > compositor, but i think this can be ge