[Mesa-dev] [PATCH V2] mesa: fix GL_MAX_NAME_LENGTH query for tessellation shaders

2015-12-23 Thread Timothy Arceri
V2: fix alignment --- src/mesa/main/shader_query.cpp | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/shader_query.cpp b/src/mesa/main/shader_query.cpp index a1813ac..3a730af 100644 --- a/src/mesa/main/shader_query.cpp +++ b/src/mesa/main/shader_query.cpp @@

Re: [Mesa-dev] [PATCH] mesa: fix GL_MAX_NAME_LENGTH query for tessellation shaders

2015-12-23 Thread Matt Turner
On Wed, Dec 23, 2015 at 8:03 PM, Timothy Arceri wrote: > --- > src/mesa/main/shader_query.cpp | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/src/mesa/main/shader_query.cpp b/src/mesa/main/shader_query.cpp > index a1813ac..2c92e4e 100644 > --- a/src/mesa/main/shader_

[Mesa-dev] [PATCH] mesa: fix GL_MAX_NAME_LENGTH query for tessellation shaders

2015-12-23 Thread Timothy Arceri
--- src/mesa/main/shader_query.cpp | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/shader_query.cpp b/src/mesa/main/shader_query.cpp index a1813ac..2c92e4e 100644 --- a/src/mesa/main/shader_query.cpp +++ b/src/mesa/main/shader_query.cpp @@ -765,7 +765,11 @@ s

[Mesa-dev] [PATCH] glsl: only add outward facing varyings to resourse list for SSO

2015-12-23 Thread Timothy Arceri
An SSO program can have multiple stages and we only want to add the externally facing varyings. The current code was adding both the packed inputs and outputs for the first and last stage of each program. Cc: Tapani Pälli --- src/glsl/linker.cpp | 17 ++--- 1 file changed, 10 inserti

Re: [Mesa-dev] [PATCH] i965: Add tr_mode and mip tail information in surface state dump

2015-12-23 Thread Anuj Phogat
On Wed, Dec 23, 2015 at 1:12 PM, Ben Widawsky wrote: > On Wed, Dec 23, 2015 at 12:09:44PM -0800, Anuj Phogat wrote: > > Cc: Ben Widawsky > > Signed-off-by: Anuj Phogat > > --- > > src/mesa/drivers/dri/i965/brw_state_dump.c | 7 +-- > > 1 file changed, 5 insertions(+), 2 deletions(-) > > >

Re: [Mesa-dev] [PATCH] i965: Add tr_mode and mip tail information in surface state dump

2015-12-23 Thread Ben Widawsky
On Wed, Dec 23, 2015 at 12:09:44PM -0800, Anuj Phogat wrote: > Cc: Ben Widawsky > Signed-off-by: Anuj Phogat > --- > src/mesa/drivers/dri/i965/brw_state_dump.c | 7 +-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/src/mesa/drivers/dri/i965/brw_state_dump.c > b/src/mes

[Mesa-dev] [PATCH] i965: Add tr_mode and mip tail information in surface state dump

2015-12-23 Thread Anuj Phogat
Cc: Ben Widawsky Signed-off-by: Anuj Phogat --- src/mesa/drivers/dri/i965/brw_state_dump.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_state_dump.c b/src/mesa/drivers/dri/i965/brw_state_dump.c index 3d3a6cf..facd4dc 100644 --- a/src/m

[Mesa-dev] [Bug 92687] Add support for ARB_internalformat_query2

2015-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=92687 Eduardo Lima Mitev changed: What|Removed |Added CC||bri...@vmware.com,

[Mesa-dev] [Bug 92687] Add support for ARB_internalformat_query2

2015-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=92687 --- Comment #1 from Eduardo Lima Mitev --- About time for an update! The "we" below refers to Antía, Alejandro and I, as the team working primarily on this extension for almost 2 months now. >From a high level point of view, we have completed mo

Re: [Mesa-dev] [PATCH v4] Add .mailmap

2015-12-23 Thread Giuseppe Bilotta
On Tue, Dec 22, 2015 at 4:11 PM, Giuseppe Bilotta wrote: [snip] Doh, apparently I got Thomas' Tanner name wrong 8-/ I'm sure you guys will be loving how much I'm managing to spam the list with this stupid thing 8-P Do I send I patch to be squashed on top of this or a v5 of the patch? -- Giusep

Re: [Mesa-dev] [PATCH] st/va: count number of slices

2015-12-23 Thread Christian König
On 23.12.2015 10:28, Julien Isorce wrote: The counter was not set but used by the driver. It is required otherwise visual output is garbage. Signed-off-by: Julien Isorce One minor nit pick below, apart from that the patch look good to me. --- src/gallium/state_trackers/va/picture.c

[Mesa-dev] [PATCH] st/va: count number of slices

2015-12-23 Thread Julien Isorce
The counter was not set but used by the driver. It is required otherwise visual output is garbage. Signed-off-by: Julien Isorce --- src/gallium/state_trackers/va/picture.c| 22 ++ src/gallium/state_trackers/va/picture_h264.c | 2 ++ src/gallium/state_trackers/va/pi

[Mesa-dev] [PATCH v6 1/4] nouveau: split nouveau_vp3_bsp in begin/next/end

2015-12-23 Thread Julien Isorce
It allows to call nouveau_vp3_bsp_next multiple times between one begin/end. It is required to support st/va. https://bugs.freedesktop.org/show_bug.cgi?id=89969 Signed-off-by: Julien Isorce --- src/gallium/drivers/nouveau/nouveau_vp3_video.h| 16 +++- .../drivers/nouveau/nouveau_vp3_video_

[Mesa-dev] [PATCH v6 2/4] nvc0: add support for st/va

2015-12-23 Thread Julien Isorce
- split nvc0_decoder_bsp in begin/next/end - preserve content buffer when calling nvc0_decoder_bsp_next - implement pipe_video_codec::begin_frame/end_frame https://bugs.freedesktop.org/show_bug.cgi?id=89969 Signed-off-by: Julien Isorce --- src/gallium/drivers/nouveau/nvc0/nvc0_video.c | 44

Re: [Mesa-dev] [PATCH v5 1/4] nouveau: split nouveau_vp3_bsp in begin/next/end

2015-12-23 Thread Julien Isorce
On 17 December 2015 at 04:02, Ilia Mirkin wrote: > On Wed, Dec 16, 2015 at 9:39 AM, Julien Isorce > wrote: > > It allows to call nouveau_vp3_bsp_next multiple times > > between one begin/end. > > > > It is required to support st/va. > > > > https://bugs.freedesktop.org/show_bug.cgi?id=89969 > >

Re: [Mesa-dev] [PATCH v5 3/4] nouveau: fix chunk decoding by updating number of slices

2015-12-23 Thread Julien Isorce
On 17 December 2015 at 04:16, Ilia Mirkin wrote: > Is there any guarantee that bsp_next is called a number of times equal > to the number of slices? Seems like it's just for appending on more > data, which may or may not be equal to the number of slices... Why is > the value in the descriptor wro

Re: [Mesa-dev] [PATCH v5 2/4] nvc0: add support for st/va

2015-12-23 Thread Julien Isorce
On 17 December 2015 at 04:13, Ilia Mirkin wrote: > On Wed, Dec 16, 2015 at 9:39 AM, Julien Isorce > wrote: > > - split nvc0_decoder_bsp in begin/next/end > > - preserve content buffer when calling nvc0_decoder_bsp_next > > - implement pipe_video_codec::begin_frame/end_frame > > > > https://bugs.