Re: [Mesa-dev] No luck with tstellar/llvm on HD4890

2012-11-07 Thread Tom Stellard
On Wed, Nov 07, 2012 at 09:24:13PM +, Andy Furniss wrote: > Vincent Lejeune wrote: > > git seems to have trouble sending my patch to ML atm, can you manually > > apply it ? It fixes lock up here > > > > diff --git a/src/gallium/drivers/r600/r600_asm.c > > b/src/gallium/drivers/r600/r600_asm.c

[Mesa-dev] [PATCH] svga: Fix memory leak in svga_buffer_transfer_map.

2012-11-07 Thread Vinson Lee
Fixes resource leak defect reported by Coverity. Signed-off-by: Vinson Lee --- src/gallium/drivers/svga/svga_resource_buffer.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/svga/svga_resource_buffer.c b/src/gallium/drivers/svga/svga_resource_buffer.c index 87a4a9b..3

[Mesa-dev] [Bug 56685] [recent build error] glsl_parser.h: No such file or directory

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56685 --- Comment #8 from Thierry Reding --- (In reply to comment #6) > Thierry, I think your cross compiling patch caused this -- broken out of > tree builds. I suppose that had to happen to me, usually being very allergic to broken out-of-tree build

[Mesa-dev] [Bug 56685] [recent build error] glsl_parser.h: No such file or directory

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56685 --- Comment #7 from Thierry Reding --- Comment on attachment 69667 --> https://bugs.freedesktop.org/attachment.cgi?id=69667 Possible Fix Review of attachment 69667: - I came up w

[Mesa-dev] : eglChooseConfig and eglCreateWindowSurface

2012-11-07 Thread zhang xiong
hi, all: I am looking at egl code recently about SandyBridge platform. But I found one problem. with the same r,g,b a byte numbers, i965 driver will return at least two FB configs, one for single buffer, another form double buffer. but the eglChooseConfig() function can't specify which

Re: [Mesa-dev] [PATCH 3/4] glsl-to-tgsi: Use TGSI_FILE_TEMPORARY_ARRAY for indirect addressing

2012-11-07 Thread Brian Paul
On 11/05/2012 01:14 PM, Tom Stellard wrote: From: Tom Stellard --- src/mesa/main/mtypes.h | 1 + src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 31 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/mtypes.h b/src/me

Re: [Mesa-dev] [PATCH 2/4] gallium: Add PIPE_SHADER_CAP_INDIRECT_TEMP_ARRAY_ADDR

2012-11-07 Thread Brian Paul
On 11/05/2012 01:14 PM, Tom Stellard wrote: From: Tom Stellard --- src/gallium/docs/source/screen.rst | 2 ++ src/gallium/drivers/r600/r600_pipe.c | 2 ++ src/gallium/drivers/radeonsi/radeonsi_pipe.c | 1 + src/gallium/include/pipe/p_defines.h | 3 ++- 4 files cha

Re: [Mesa-dev] [PATCH 08/10] softpipe: add ARB_texture_cube_map_array support

2012-11-07 Thread Brian Paul
On 11/06/2012 03:16 PM, Dave Airlie wrote: This adds support to the softpipe texture sampler and tgsi exec. In order to handle the extra input to the texture sampling, I've had to expand the interfaces to take a c1 value for storing the texture compare value for the TEX2 case. Signed-off-by: Da

Re: [Mesa-dev] [PATCH 1/4] tgsi: Add support to ureg for TGSI_FILE_TEMPORARAY_ARRAY

2012-11-07 Thread Brian Paul
On 11/05/2012 01:14 PM, Tom Stellard wrote: From: Tom Stellard --- src/gallium/auxiliary/tgsi/tgsi_ureg.c | 12 src/gallium/auxiliary/tgsi/tgsi_ureg.h | 3 +++ 2 files changed, 15 insertions(+) diff --git a/src/gallium/auxiliary/tgsi/tgsi_ureg.c b/src/gallium/auxiliary/tgsi/t

Re: [Mesa-dev] No luck with tstellar/llvm on HD4890

2012-11-07 Thread Andy Furniss
Tom Stellard wrote: On Wed, Nov 07, 2012 at 09:24:13PM +, Andy Furniss wrote: Vincent Lejeune wrote: git seems to have trouble sending my patch to ML atm, can you manually apply it ? It fixes lock up here diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_as

Re: [Mesa-dev] No luck with tstellar/llvm on HD4890

2012-11-07 Thread Andy Furniss
Mike Lothian wrote: Hi Andy Try the LLVM ebuilds in the FireBurn overlay - they turn on intrinsics without using the debug versions Thanks, but I am using LFS. I'm still seeing the issues when running some games but least it won't be a debug build OK, I'll try a non debug soon just to see

Re: [Mesa-dev] [PATCH] arb_texture_cube_map_array: fix attrib push/pop

2012-11-07 Thread Brian Paul
On 11/07/2012 01:51 PM, Dave Airlie wrote: On Thu, Nov 8, 2012 at 1:00 AM, Brian Paul wrote: On 11/06/2012 07:56 PM, Dave Airlie wrote: From: Dave Airlie fdo9833 piglit test caught this. What exactly was the failure? The pop attrib was failing with an error, probably due to the missing

[Mesa-dev] [PATCH] mesa: Fix glGetVertexAttribI[u]iv now that we have real integer attribs.

2012-11-07 Thread Kenneth Graunke
Since cf438f5375e242, we store actual integers for the attribute data. We just need to reinterpret the GLfloat array as a GLint/GLuint array so we can read the proper data. Fixes oglconform's glsl-vertex-attrib/basic.VertexAttribI[1234][u]i subtests (after fixing an unrelated bug in those test cas

Re: [Mesa-dev] [PATCH 9/9] mesa: Convert the hash table for GL object ids to the open-addressing hash.

2012-11-07 Thread Chad Versace
On 11/07/2012 05:32 PM, Chad Versace wrote: > Patch 6 breaks the Android build. I've uploaded a branch 'hashtable' > that contains your series without breaking the Android build. Please > take a look at it. Well, I should have said "I'll push the branch when fdo comes back up." _

Re: [Mesa-dev] [PATCH 9/9] mesa: Convert the hash table for GL object ids to the open-addressing hash.

2012-11-07 Thread Chad Versace
On 11/06/2012 11:18 PM, Eric Anholt wrote: > The previous 1023-entry chaining hash table never resized, so it was very > inefficient when there were many objects live. While one could have an even > more efficient implementation than this (keep an array for genned names with > packed IDs, or take

Re: [Mesa-dev] No luck with tstellar/llvm on HD4890

2012-11-07 Thread Mathias Fröhlich
Vincent, On Wednesday, November 07, 2012 08:32:03 Vincent Lejeune wrote: > git seems to have trouble sending my patch to ML atm, can you manually apply > it ? It fixes lock up here > > diff --git a/src/gallium/drivers/r600/r600_asm.c > b/src/gallium/drivers/r600/r600_asm.c index 5f2548e..f06af44

Re: [Mesa-dev] [PATCH] r600g: fix pre eg export with llvm

2012-11-07 Thread Tom Stellard
On Wed, Nov 07, 2012 at 05:49:37PM +0100, Vincent Lejeune wrote: > --- Reviewed-by: Tom Stellard > src/gallium/drivers/r600/r600_asm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/gallium/drivers/r600/r600_asm.c > b/src/gallium/drivers/r600/r600_asm.c > index 5f

[Mesa-dev] [Bug 56685] [recent build error] glsl_parser.h: No such file or directory

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56685 Matt Turner changed: What|Removed |Added CC||thierry.reding@avionic-desi

Re: [Mesa-dev] No luck with tstellar/llvm on HD4890

2012-11-07 Thread Mike Lothian
Hi Andy Try the LLVM ebuilds in the FireBurn overlay - they turn on intrinsics without using the debug versions I'm still seeing the issues when running some games but least it won't be a debug build Cheers Mike On 7 November 2012 21:24, Andy Furniss wrote: > Vincent Lejeune wrote: > >> git

Re: [Mesa-dev] No luck with tstellar/llvm on HD4890

2012-11-07 Thread Andy Furniss
Vincent Lejeune wrote: git seems to have trouble sending my patch to ML atm, can you manually apply it ? It fixes lock up here diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 5f2548e..f06af44 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/sr

Re: [Mesa-dev] [PATCH] arb_texture_cube_map_array: fix attrib push/pop

2012-11-07 Thread Dave Airlie
On Thu, Nov 8, 2012 at 1:00 AM, Brian Paul wrote: > On 11/06/2012 07:56 PM, Dave Airlie wrote: >> >> From: Dave Airlie >> >> fdo9833 piglit test caught this. > > > What exactly was the failure? The pop attrib was failing with an error, probably due to the missing continue from below, but you are

Re: [Mesa-dev] [PATCH 5/9] automake: Merge *_CXX_FILES variables in the glsl build.

2012-11-07 Thread Chad Versace
On 11/06/2012 11:18 PM, Eric Anholt wrote: > --- > src/glsl/Android.mk |4 +--- > src/glsl/Makefile.am|1 - > src/glsl/Makefile.sources |9 - > src/glsl/SConscript |2 +- > src/mesa/libdricore/Makefile.am |1 - > 5 files changed

Re: [Mesa-dev] RFC: Standardize names of OpenGL functions in Mesa.

2012-11-07 Thread Ilyes Gouta
Hi, +1 for more debugging ease, especially on remote targets. -Ilyes On Nov 7, 2012 9:06 PM, "Paul Berry" wrote: > In situations where an OpenGL function has several equivalent names, Mesa > currently does not follow a consistent standard for which name is used. > For example, the function glDi

[Mesa-dev] RFC: Standardize names of OpenGL functions in Mesa.

2012-11-07 Thread Paul Berry
In situations where an OpenGL function has several equivalent names, Mesa currently does not follow a consistent standard for which name is used. For example, the function glDisablei() (introduced in GL 3.0) is equivalent to glDisableIndexedEXT() (introduced in EXT_draw_buffers2). Mesa manages the

[Mesa-dev] [Bug 56685] [recent build error] glsl_parser.h: No such file or directory

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56685 Johannes Obermayr changed: What|Removed |Added Attachment #69491|0 |1 is obsolete|

Re: [Mesa-dev] [PATCH] i965: Fix slow leak of brw->wm.compile_data->store

2012-11-07 Thread Kenneth Graunke
On 11/06/2012 10:47 AM, Eric Anholt wrote: We were successfully freeing our compile data at context destroy, but until then we were allocating a new store every compile without freeing it. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=56019 --- src/mesa/drivers/dri/i965/brw_context.h

Re: [Mesa-dev] [PATCH 03/10] mesa: add fbo/texture support for ARB_texture_cube_map_array

2012-11-07 Thread Kenneth Graunke
On 11/06/2012 02:15 PM, Dave Airlie wrote: This adds the mesa core + texture + fbo support for the texture cube map array extension. Signed-off-by: Dave Airlie --- src/mesa/main/fbobject.c | 9 - src/mesa/main/mtypes.h | 2 ++ src/mesa/main/shared.c | 1 + src/mesa/main/te

Re: [Mesa-dev] [PATCH 05/10] glsl: add ARB_texture_cube_map_array support

2012-11-07 Thread Kenneth Graunke
On 11/06/2012 02:16 PM, Dave Airlie wrote: This adds all the new builtins + the new sampler types, and hooks them up if the extension is supported. Signed-off-by: Dave Airlie --- src/glsl/builtin_types.h | 15 +++ .../profiles/ARB_texture_cube_map_array.glsl

[Mesa-dev] [Bug 56827] mesa/main/api_exec.c:940: undefined reference to `_es_AlphaFuncx'

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56827 Paul Berry changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [Mesa-dev] [PATCH] r600g: fix pre eg export with llvm

2012-11-07 Thread Alex Deucher
Reviewed-by: Alex Deucher On Wed, Nov 7, 2012 at 11:49 AM, Vincent Lejeune wrote: > --- > src/gallium/drivers/r600/r600_asm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/gallium/drivers/r600/r600_asm.c > b/src/gallium/drivers/r600/r600_asm.c > index 5f2548e..f0

Re: [Mesa-dev] [PATCH 02/10] mesa: add ARB_texture_cube_map_array extension bits

2012-11-07 Thread Kenneth Graunke
On 11/06/2012 02:15 PM, Dave Airlie wrote: This just adds the bit + extension name. Signed-off-by: Dave Airlie --- src/mesa/main/extensions.c | 1 + src/mesa/main/mtypes.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index

Re: [Mesa-dev] [PATCH 1/9] automake: Fix a comment typo.

2012-11-07 Thread Kenneth Graunke
On 11/06/2012 11:18 PM, Eric Anholt wrote: --- src/glsl/Makefile.sources |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources index aafb53e..0da6958 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@

Re: [Mesa-dev] [PATCH] mesa: expand the fragprog_inputs_read bitfield in ffvertex_prog.c

2012-11-07 Thread Brian Paul
On 11/07/2012 10:18 AM, Eric Anholt wrote: Brian Paul writes: The glean glsl1 test was failing an assertion because FRAG_ATTRIB_FACE (and FRAG_ATTRIB_PNTC) doesn't fit in a 12-bit field. In the failing case we're using a fragment shader with fixed-function vertex processing. What about if t

[Mesa-dev] [PATCH] r600g: fix pre eg export with llvm

2012-11-07 Thread Vincent Lejeune
--- src/gallium/drivers/r600/r600_asm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 5f2548e..f06af44 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @

Re: [Mesa-dev] [PATCH] mesa: expand the fragprog_inputs_read bitfield in ffvertex_prog.c

2012-11-07 Thread Kenneth Graunke
On 11/07/2012 07:33 AM, Brian Paul wrote: The glean glsl1 test was failing an assertion because FRAG_ATTRIB_FACE (and FRAG_ATTRIB_PNTC) doesn't fit in a 12-bit field. In the failing case we're using a fragment shader with fixed-function vertex processing. --- src/mesa/main/ffvertex_prog.c |

Re: [Mesa-dev] [PATCH] mesa: expand the fragprog_inputs_read bitfield in ffvertex_prog.c

2012-11-07 Thread Eric Anholt
Brian Paul writes: > The glean glsl1 test was failing an assertion because FRAG_ATTRIB_FACE > (and FRAG_ATTRIB_PNTC) doesn't fit in a 12-bit field. > > In the failing case we're using a fragment shader with fixed-function > vertex processing. What about if they have an FS reading generic attribs

Re: [Mesa-dev] [PATCH 02/11] softpipe: Handle adjacency primitives.

2012-11-07 Thread Jose Fonseca
- Original Message - > On 11/07/2012 08:26 AM, jfons...@vmware.com wrote: > > From: José Fonseca > > > > Not fully tested. > > > > Based on diagrams from > > http://msdn.microsoft.com/en-us/library/windows/desktop/bb205124.aspx#Primitive_Adjacency > > --- > > src/gallium/drivers/softpip

Re: [Mesa-dev] [PATCH 02/11] softpipe: Handle adjacency primitives.

2012-11-07 Thread Brian Paul
On 11/07/2012 09:35 AM, Roland Scheidegger wrote: I think that probably needs a test to make sure the right vertices are used, I can't quite tell if it's right. This is hit when adjacent primitives are used but not geometry shader is active right? Yeah, I had to look that up myself. Adjacency

Re: [Mesa-dev] [PATCH 02/11] softpipe: Handle adjacency primitives.

2012-11-07 Thread Roland Scheidegger
I think that probably needs a test to make sure the right vertices are used, I can't quite tell if it's right. This is hit when adjacent primitives are used but not geometry shader is active right? The rest of the series looks good to me. Roland Am 07.11.2012 16:26, schrieb jfons...@vmware.com:

Re: [Mesa-dev] No luck with tstellar/llvm on HD4890

2012-11-07 Thread Vincent Lejeune
git seems to have trouble sending my patch to ML atm, can you manually apply it ? It fixes lock up here diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 5f2548e..f06af44 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r6

Re: [Mesa-dev] [PATCH 01/11] util/u_rect: Make it C++ safe.

2012-11-07 Thread Brian Paul
On 11/07/2012 08:26 AM, jfons...@vmware.com wrote: From: José Fonseca --- src/gallium/auxiliary/util/u_rect.h | 15 +++ 1 file changed, 15 insertions(+) Except for my other comments the series looks good. Reviewed-by: Brian Paul ___

Re: [Mesa-dev] [PATCH 06/11] softpipe, util: Fix blending of R and RG formats.

2012-11-07 Thread Brian Paul
On 11/07/2012 08:26 AM, jfons...@vmware.com wrote: From: José Fonseca Alpha is also 1 for formats like R32G32_FLOAT. --- src/gallium/auxiliary/util/u_format.c | 26 +- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/src/gallium/auxiliary/util/u_format.c

Re: [Mesa-dev] [PATCH 05/11] softpipe: Fix rgb_dst_factor == PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE.

2012-11-07 Thread Brian Paul
On 11/07/2012 08:26 AM, jfons...@vmware.com wrote: From: José Fonseca We must multiply the factor against the destination, not the source. --- src/gallium/drivers/softpipe/sp_quad_blend.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/softpipe

Re: [Mesa-dev] [PATCH 02/11] softpipe: Handle adjacency primitives.

2012-11-07 Thread Brian Paul
On 11/07/2012 08:26 AM, jfons...@vmware.com wrote: From: José Fonseca Not fully tested. Based on diagrams from http://msdn.microsoft.com/en-us/library/windows/desktop/bb205124.aspx#Primitive_Adjacency --- src/gallium/drivers/softpipe/sp_prim_vbuf.c | 46 +++ 1 file

Re: [Mesa-dev] Mesa (master): mesa: assert that key->fragprog_inputs_read value isn' t too large

2012-11-07 Thread Brian Paul
On 11/07/2012 03:48 AM, Michel Dänzer wrote: On Die, 2012-11-06 at 07:11 -0800, Brian Paul wrote: Module: Mesa Branch: master Commit: 0d61f879a1f2e6bb37368731a29d5267e1c25195 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0d61f879a1f2e6bb37368731a29d5267e1c25195 Author: Brian Paul Da

[Mesa-dev] [PATCH] mesa: expand the fragprog_inputs_read bitfield in ffvertex_prog.c

2012-11-07 Thread Brian Paul
The glean glsl1 test was failing an assertion because FRAG_ATTRIB_FACE (and FRAG_ATTRIB_PNTC) doesn't fit in a 12-bit field. In the failing case we're using a fragment shader with fixed-function vertex processing. --- src/mesa/main/ffvertex_prog.c |6 +++--- 1 files changed, 3 insertions(+),

[Mesa-dev] [PATCH 11/11] util/u_surface: Support 3D/array textures in util_resource_copy_region().

2012-11-07 Thread jfonseca
From: José Fonseca --- src/gallium/auxiliary/util/u_surface.c | 70 1 file changed, 44 insertions(+), 26 deletions(-) diff --git a/src/gallium/auxiliary/util/u_surface.c b/src/gallium/auxiliary/util/u_surface.c index 055e538..e99431e 100644 --- a/src/gallium/

[Mesa-dev] [PATCH 07/11] galahad: Support geometry shader / stream-output methods.

2012-11-07 Thread jfonseca
From: José Fonseca --- src/gallium/drivers/galahad/glhd_context.c | 192 1 file changed, 110 insertions(+), 82 deletions(-) diff --git a/src/gallium/drivers/galahad/glhd_context.c b/src/gallium/drivers/galahad/glhd_context.c index 53e0b17..ac666d4 100644 --- a/src

[Mesa-dev] [PATCH 10/11] draw: Remove redundant draw_geometry_shader_delete().

2012-11-07 Thread jfonseca
From: José Fonseca draw_delete_geometry_shader() seems to be the real one. --- src/gallium/auxiliary/draw/draw_gs.c |8 ++-- src/gallium/auxiliary/draw/draw_gs.h |2 -- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/gallium/auxiliary/draw/draw_gs.c b/src/gallium/

[Mesa-dev] [PATCH 09/11] trace: Support geometry shaders.

2012-11-07 Thread jfonseca
From: José Fonseca --- src/gallium/drivers/trace/tr_context.c | 186 1 file changed, 71 insertions(+), 115 deletions(-) diff --git a/src/gallium/drivers/trace/tr_context.c b/src/gallium/drivers/trace/tr_context.c index fed95c6..64d039c 100644 --- a/src/gallium

[Mesa-dev] [PATCH 08/11] util/u_surface: Fix util_clear_depth_stencil for Z32_FLOAT_S8X24_UINT.

2012-11-07 Thread jfonseca
From: José Fonseca util_pack_z_stencil was being unconditionally invoked for all formats, causing an assertion failure for Z32_FLOAT_S8X24_UINT. --- src/gallium/auxiliary/util/u_surface.c | 18 ++ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/src/gallium/auxili

[Mesa-dev] [PATCH 06/11] softpipe, util: Fix blending of R and RG formats.

2012-11-07 Thread jfonseca
From: José Fonseca Alpha is also 1 for formats like R32G32_FLOAT. --- src/gallium/auxiliary/util/u_format.c | 26 +- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/src/gallium/auxiliary/util/u_format.c b/src/gallium/auxiliary/util/u_format.c index a41c46

[Mesa-dev] [PATCH 05/11] softpipe: Fix rgb_dst_factor == PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE.

2012-11-07 Thread jfonseca
From: José Fonseca We must multiply the factor against the destination, not the source. --- src/gallium/drivers/softpipe/sp_quad_blend.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/softpipe/sp_quad_blend.c b/src/gallium/drivers/softpipe/sp_qu

[Mesa-dev] [PATCH 04/11] tgsi: Lift the requirement of indirection being done by ADDR register.

2012-11-07 Thread jfonseca
From: José Fonseca For drivers with native integer / SM4 support this is just an hindrance. --- src/gallium/auxiliary/tgsi/tgsi_exec.c |1 - 1 file changed, 1 deletion(-) diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index 0b58f09..05bf070 100

[Mesa-dev] [PATCH 03/11] util: Fix reduction of line adjacency primitives.

2012-11-07 Thread jfonseca
From: José Fonseca --- src/gallium/auxiliary/util/u_prim.h |2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/auxiliary/util/u_prim.h b/src/gallium/auxiliary/util/u_prim.h index 070df64..d62c636 100644 --- a/src/gallium/auxiliary/util/u_prim.h +++ b/src/gallium/auxiliary/util/

[Mesa-dev] [PATCH 02/11] softpipe: Handle adjacency primitives.

2012-11-07 Thread jfonseca
From: José Fonseca Not fully tested. Based on diagrams from http://msdn.microsoft.com/en-us/library/windows/desktop/bb205124.aspx#Primitive_Adjacency --- src/gallium/drivers/softpipe/sp_prim_vbuf.c | 46 +++ 1 file changed, 46 insertions(+) diff --git a/src/gallium/dr

[Mesa-dev] [PATCH 01/11] util/u_rect: Make it C++ safe.

2012-11-07 Thread jfonseca
From: José Fonseca --- src/gallium/auxiliary/util/u_rect.h | 15 +++ 1 file changed, 15 insertions(+) diff --git a/src/gallium/auxiliary/util/u_rect.h b/src/gallium/auxiliary/util/u_rect.h index 4cb90d3..8fccae8 100644 --- a/src/gallium/auxiliary/util/u_rect.h +++ b/src/gallium/a

Re: [Mesa-dev] [PATCH] arb_texture_cube_map_array: fix attrib push/pop

2012-11-07 Thread Brian Paul
On 11/06/2012 07:56 PM, Dave Airlie wrote: From: Dave Airlie fdo9833 piglit test caught this. What exactly was the failure? BTW, that test should really be rewritten as non-bug test. I think I'll do that. Signed-off-by: Dave Airlie --- src/mesa/main/attrib.c | 10 -- 1 file

[Mesa-dev] [Bug 56685] [recent build error] glsl_parser.h: No such file or directory

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56685 --- Comment #4 from Fabio Pedretti --- > Created attachment 69491 [details] [review] > Please try this patch. I am still getting the same error: https://launchpadlibrarian.net/122265792/buildlog_ubuntu-quantal-i386.mesa_9.1~git1211071345.65faed~

[Mesa-dev] [Bug 44618] Cross-compilation broken by glsl builtin_compiler

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44618 Thierry Reding changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Mesa-dev] [Bug 44618] Cross-compilation broken by glsl builtin_compiler

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44618 --- Comment #17 from Ross Burton --- I see the patches landed, can this bug be closed or is there still outstanding work? -- You are receiving this mail because: You are the assignee for the bug. ___

Re: [Mesa-dev] Mesa (master): mesa: assert that key->fragprog_inputs_read value isn' t too large

2012-11-07 Thread Michel Dänzer
On Die, 2012-11-06 at 07:11 -0800, Brian Paul wrote: > Module: Mesa > Branch: master > Commit: 0d61f879a1f2e6bb37368731a29d5267e1c25195 > URL: > http://cgit.freedesktop.org/mesa/mesa/commit/?id=0d61f879a1f2e6bb37368731a29d5267e1c25195 > > Author: Brian Paul > Date: Sun Nov 4 16:43:44 2012

[Mesa-dev] [Bug 39393] X Error of failed request: BadMatch (invalid parameter attributes) when run jkrahantest

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39393 libo changed: What|Removed |Added Status|RESOLVED|VERIFIED -- You are receiving this mail because:

[Mesa-dev] [Bug 39393] X Error of failed request: BadMatch (invalid parameter attributes) when run jkrahantest

2012-11-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39393 libo changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---