X.Org Book Sprint 2012 (guide to writing graphics drivers)

2012-08-16 Thread Matt Dew
(Cross post. Yes, I know this is short notice and a short window to reply. My apologies on that.) X.Org Book Sprint 2012 Monday Sept 17 & Tuesday Sept 18. Nürnberg (Nuremberg), Germany. The X.Org Consortium will hold a book sprint on the Monday and Tuesday before the Developers Conference

[PATCH 2/2] tests: ensure sanity leak check tests pass when leak checks are disabled.

2012-08-16 Thread U. Artie Eoff
From: "U. Artie Eoff" This finalizes Robert Bradfords patch to allow NO_ASSERT_LEAK_CHECK environment variable to disable leak checks in unit tests. Signed-off-by: U. Artie Eoff --- tests/sanity-test.c | 8 tests/test-runner.c | 6 +- 2 files changed, 13 insertions(+), 1 deletion(

[PATCH 1/2] tests: Allow disabling leak checking assertions by env

2012-08-16 Thread U. Artie Eoff
From: Rob Bradford Some code coverage tools trigger these assertions when run against the test suite since they don't free all their memory. --- tests/test-runner.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test-runner.c b/tests/test-runner.c index 63ce384..

RE: [PATCH wayland] test: remove memory leak checks

2012-08-16 Thread Eoff, Ullysses A
I'm good with that... I'll submit a patch on top of Robert Bradford's patch. U. Artie >-Original Message- >From: hoegsb...@gmail.com [mailto:hoegsb...@gmail.com] On Behalf Of >Kristian Høgsberg >Sent: Thursday, August 16, 2012 12:47 PM >To: Eoff, Ullysses A >Cc: wayland-devel@lists.freede

[PATCH weston] compositor: add support for OES_EGL_image_external

2012-08-16 Thread Rob Clark
From: Rob Clark In cases where the GPU can natively handle certain YUV formats, eglQueryWaylandBufferWL() can return the value EGL_TEXTURE_EXTERNAL_WL and the compositor will treat the buffer as a single egl-image-external. See: http://www.khronos.org/registry/gles/extensions/OES/OES_EGL_image_e

[PATCH mesa] add EGL_TEXTURE_EXTERNAL_WL to WL_bind_wayland_display spec

2012-08-16 Thread Rob Clark
From: Rob Clark Signed-off-by: Rob Clark --- docs/WL_bind_wayland_display.spec |5 + include/EGL/eglmesaext.h |1 + 2 files changed, 6 insertions(+) diff --git a/docs/WL_bind_wayland_display.spec b/docs/WL_bind_wayland_display.spec index 02bd6ea..ce52e2d 100644 --- a/docs

Re: [PATCH wayland] test: remove memory leak checks

2012-08-16 Thread Kristian Høgsberg
On Wed, Aug 8, 2012 at 4:22 PM, U. Artie Eoff wrote: > From: "U. Artie Eoff" > > Wrapping dynamic memory functions (malloc, realloc, free, calloc) > can be problematic, for instance, when instrumenting code with > coverage hooks. > In general, the community consensus is to avoid writing your own

Re: [RFC] [PATCH weston v2] Implement output transformations.

2012-08-16 Thread Kristian Høgsberg
On Thu, Aug 16, 2012 at 02:33:06AM -0600, Scott Moreau wrote: > This patch allows rotation and mirroring outputs for x11 and drm backends. > A new 'transform' key can be set in the [output] section. From the protocol: > > "The flipped values correspond to an initial flip around a vertical axis > f

RE: [PATCH wayland] test: remove memory leak checks

2012-08-16 Thread Eoff, Ullysses A
Bump... >-Original Message- >From: Eoff, Ullysses A >Sent: Wednesday, August 08, 2012 1:22 PM >To: wayland-devel@lists.freedesktop.org >Cc: Eoff, Ullysses A >Subject: [PATCH wayland] test: remove memory leak checks > >From: "U. Artie Eoff" > >Wrapping dynamic memory functions (malloc, rea

Re: [PATCH weston] Correct mistake in config file.

2012-08-16 Thread Kristian Høgsberg
On Thu, Aug 16, 2012 at 12:04:25AM -0600, Scott Moreau wrote: This and the two other small fixes applied, thanks. Kristian > --- > weston.ini | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/weston.ini b/weston.ini > index 1de8e29..3fda31b 100644 > --- a/weston.ini >

Re: [PATCH 1/2] compositor: Clear only the the damage that was actually repainted

2012-08-16 Thread Kristian Høgsberg
On Thu, Aug 16, 2012 at 11:22:37AM +0300, Ander Conselvan de Oliveira wrote: > Em 15-08-2012 23:02, Kristian Høgsberg escreveu: > >On Tue, Aug 14, 2012 at 03:26:49PM +0300, Ander Conselvan de Oliveira wrote: > >>From: Ander Conselvan de Oliveira > >> > >>Instead of clearing the whole output region

Re: [PATCH] toytoolkit: don't ignore resizes with negative width or height

2012-08-16 Thread Kristian Høgsberg
On Thu, Aug 16, 2012 at 10:50:07AM +0200, Philipp Brüschweiler wrote: > E.g. this can happen when you grab the lower right corner of a window > and move over the top of the window when resizing. In this case, the > changed width is still important and should be acted upon. Indeed, that was the old

[PATCH] toytoolkit: don't ignore resizes with negative width or height

2012-08-16 Thread Philipp Brüschweiler
E.g. this can happen when you grab the lower right corner of a window and move over the top of the window when resizing. In this case, the changed width is still important and should be acted upon. https://bugs.freedesktop.org/show_bug.cgi?id=53560 --- clients/window.c | 3 --- 1 Datei geändert,

[RFC] [PATCH weston v2] Implement output transformations.

2012-08-16 Thread Scott Moreau
This patch allows rotation and mirroring outputs for x11 and drm backends. A new 'transform' key can be set in the [output] section. From the protocol: "The flipped values correspond to an initial flip around a vertical axis followed by rotation." The transform key can be one of the following 8 s

Re: [PATCH 1/2] compositor: Clear only the the damage that was actually repainted

2012-08-16 Thread Ander Conselvan de Oliveira
Em 15-08-2012 23:02, Kristian Høgsberg escreveu: On Tue, Aug 14, 2012 at 03:26:49PM +0300, Ander Conselvan de Oliveira wrote: From: Ander Conselvan de Oliveira Instead of clearing the whole output region after a repaint, clear only the regions that were actually painted. This way, the damage a

[PATCH weston] Remove unused enum.

2012-08-16 Thread Scott Moreau
--- src/compositor.h | 4 1 file changed, 4 deletions(-) diff --git a/src/compositor.h b/src/compositor.h index f856418..d47fe1b 100644 --- a/src/compositor.h +++ b/src/compositor.h @@ -351,10 +351,6 @@ struct weston_compositor { struct weston_xkb_info xkb_info; }; -enum weston_ou

[RFC] [PATCH weston] Implement output transformations.

2012-08-16 Thread Scott Moreau
This patch allows rotation and mirroring outputs for x11 and drm backends. A new 'transform' key can be set in the [output] section. From the protocol: "The flipped values correspond to an initial flip around a vertical axis followed by rotation." The transform key can be one of the following 8 s

[PATCH wayland] protocol: Fix typo.

2012-08-16 Thread Scott Moreau
--- protocol/wayland.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/wayland.xml b/protocol/wayland.xml index cfe95c0..5e56cb8 100644 --- a/protocol/wayland.xml +++ b/protocol/wayland.xml @@ -1006,7 +1006,7 @@ output device. The flipped values cor

[PATCH weston] Correct mistake in config file.

2012-08-16 Thread Scott Moreau
--- weston.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/weston.ini b/weston.ini index 1de8e29..3fda31b 100644 --- a/weston.ini +++ b/weston.ini @@ -44,5 +44,4 @@ duration=600 #[output] #name=X1 -#width=1024 -#height=768 +#mode=1024x768 -- 1.7.11.2 ___