[Mesa-dev] [Bug 51364] piglit fs-clip-distance-interpolated regression

2012-07-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51364 Olivier Galibert changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

Re: [Mesa-dev] [PATCH 3/3] i965: adjust gen6+ timestamp pipe_control writes

2012-07-01 Thread Kenneth Graunke
On 06/26/2012 07:28 AM, Daniel Vetter wrote: > Similar treatment to the depth count pipe_control writes > - Add the CS_STALL workaround, timestamp writes are non-zero post-sync > ops, too. > - Also ensure that we write the full 64bits by using the 5 dword long > variant of pipe_control. > --- >

Re: [Mesa-dev] [PATCH 2/3] i965: we want 64bit writes for depth count

2012-07-01 Thread Kenneth Graunke
On 06/26/2012 07:28 AM, Daniel Vetter wrote: > ... and the hardware seems to take the lenght of the pipe control > command to indicate whether the write is 64bit or 32bit. Which makes > sense for immediate writes. > > I've discovered this by writing a pattern into the query object bo and > noticin

[Mesa-dev] [Bug 51641] New: GLU_TESS_COMBINE callback called with NULL data pointers, conflicting documentation.

2012-07-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51641 Bug #: 51641 Summary: GLU_TESS_COMBINE callback called with NULL data pointers, conflicting documentation. Classification: Unclassified Product: Mesa Version: 8.0 Plat

Re: [Mesa-dev] [PATCH 3/3] i965/fs: Allow copy propagation on uniforms.

2012-07-01 Thread Kenneth Graunke
On 06/08/2012 01:01 PM, Eric Anholt wrote: > This is a big win for savage2, hon and yofrankie. 62 new programs for > savage2/hon get 16-wide mode, along with one for humus demos and two > for tropics. Even a few shaders from tropics see reductions of 15% or > more. > > total instructions in shar

Re: [Mesa-dev] [PATCH 1/9] mesa: re-order, update comments on lighting-related structs

2012-07-01 Thread Kenneth Graunke
Patches 1-7 are: Reviewed-by: Kenneth Graunke ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH] glx/tests: Fix off-by-one error in allocating extension string buffer

2012-07-01 Thread Kenneth Graunke
On 06/29/2012 01:58 PM, Ian Romanick wrote: > From: Ian Romanick > > NOTE: This is a candidate for the 8.0 release branch. > > Signed-off-by: Ian Romanick > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=50621 > Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=418161 > Cc: Markus Oehme

[Mesa-dev] [PATCH] glsl: Remove unused ir_loop_jump::loop pointer.

2012-07-01 Thread Kenneth Graunke
Commit 0c005bd7 intended to make ir_loop_jump::mode public, but also accidentally added a new pointer to the enclosing loop. Furthermore, it tried to initialize the new field by adding "this->loop = loop;" to the constructor, but since there is no loop parameter, this only initialized the field to

Re: [Mesa-dev] [PATCH] i965: fix transform feedback with primitive restart

2012-07-01 Thread Kenneth Graunke
On 06/28/2012 04:12 PM, Jordan Justen wrote: > When querying GL_PRIMITIVES_GENERATED, if primitive restart > is also used, then take the software primitive restart > path so GL_PRIMITIVES_GENERATED is returned correctly. > > GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN is also updated > since it will

Re: [Mesa-dev] [PATCH 2/4] mesa: fix api source gen for out-of-tree builds

2012-07-01 Thread Kenneth Graunke
On 07/01/2012 11:10 AM, nobled wrote: > Add $(srcdir) where needed. > --- > src/mesa/Makefile.am |6 -- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am > index e52678d..44ec619 100644 > --- a/src/mesa/Makefile.am > +++ b/src/m

Re: [Mesa-dev] [PATCH 1/4] glapi/gen: fix out of tree build

2012-07-01 Thread Kenneth Graunke
On 07/01/2012 11:10 AM, nobled wrote: > Add "-f $(srcdir)/gl_API.xml" to the arguments of all > the scripts that by default look for gl_API.xml in the > working directory when run with no arguments, and prepend > $(srcdir) to those scripts that are already using an > explicit -f argument. > --- >

[Mesa-dev] [Bug 51364] piglit fs-clip-distance-interpolated regression

2012-07-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51364 Vinson Lee changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED

[Mesa-dev] [Bug 51366] [llvmpipe] src/gallium/auxiliary/draw/draw_llvm.c:1475:draw_llvm_generate: Assertion `0' failed.

2012-07-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51366 Vinson Lee changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED

[Mesa-dev] [Bug 51629] New: [swrast] piglit fbo-1d regression

2012-07-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51629 Bug #: 51629 Summary: [swrast] piglit fbo-1d regression Classification: Unclassified Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status

[Mesa-dev] [PATCH] egl: fix copy/pasted misnomer

2012-07-01 Thread nobled
This is a long-standing typo that propagated from the wayland code, confusing drm_magic_t and wayland object IDs. --- src/egl/drivers/dri2/egl_dri2.h|2 +- src/egl/drivers/dri2/platform_drm.c|4 ++-- src/egl/drivers/dri2/platform_wayland.c|

[Mesa-dev] [PATCH 4/4] mesa: point to Makefile.old in the srcdir

2012-07-01 Thread nobled
Gets out-of-tree builds slightly closer to working. --- src/mesa/Makefile.am |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am index 5736c5d..bada760 100644 --- a/src/mesa/Makefile.am +++ b/src/mesa/Makefile.am @@ -94,13 +94,13

[Mesa-dev] [PATCH 3/4] mesa: fix parser source gen for out-of-tree builds

2012-07-01 Thread nobled
--- src/mesa/Makefile.am |2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am index 44ec619..5736c5d 100644 --- a/src/mesa/Makefile.am +++ b/src/mesa/Makefile.am @@ -86,9 +86,11 @@ main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIsp

[Mesa-dev] [PATCH 2/4] mesa: fix api source gen for out-of-tree builds

2012-07-01 Thread nobled
Add $(srcdir) where needed. --- src/mesa/Makefile.am |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am index e52678d..44ec619 100644 --- a/src/mesa/Makefile.am +++ b/src/mesa/Makefile.am @@ -78,10 +78,12 @@ main/api_exec_es2_re

[Mesa-dev] [PATCH 1/4] glapi/gen: fix out of tree build

2012-07-01 Thread nobled
Add "-f $(srcdir)/gl_API.xml" to the arguments of all the scripts that by default look for gl_API.xml in the working directory when run with no arguments, and prepend $(srcdir) to those scripts that are already using an explicit -f argument. --- src/mapi/glapi/gen/Makefile.am | 52 ++

Re: [Mesa-dev] [PATCH 2/2] gles2: Add GL_NV_read_buffer extension

2012-07-01 Thread nobled
On Fri, Jun 15, 2012 at 7:44 PM, Kristian Høgsberg wrote: > This lets us select the front buffer for reading under GLES2. > --- > src/mapi/glapi/gen/es_EXT.xml |7 +++ > src/mapi/glapi/gen/gles_api.py |2 ++ > src/mesa/main/APIspec.xml | 13 + > src/mesa/main/exten

Re: [Mesa-dev] Mesa (master): mesa: #define fprintf to be __mingw_fprintf() on Mingw32

2012-07-01 Thread nobled
On Fri, Jun 22, 2012 at 11:26 PM, Brian Paul wrote: > Module: Mesa > Branch: master > Commit: cbffaf20e9e6154310ba68bb2b44adc37ba83bcd > URL: > http://cgit.freedesktop.org/mesa/mesa/commit/?id=cbffaf20e9e6154310ba68bb2b44adc37ba83bcd > > Author: Brian Paul > Date: Fri Jun 22 10:16:25 2012 -

[Mesa-dev] [Bug 43520] CoreBreach: Static lighting broken in Mesa 7.11

2012-07-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43520 Javier Jardón changed: What|Removed |Added CC||jjar...@gnome.org -- Configure bugmail:

[Mesa-dev] [Bug 48441] gnome-control-center crashes

2012-07-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48441 Emil Velikov changed: What|Removed |Added CC||gm5...@gmail.com --- Comment #23 from Emi

[Mesa-dev] [Bug 49039] Gnome 3.4 ArchLinux Beta Testing

2012-07-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49039 Emil Velikov changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: [Mesa-dev] [PATCH] clover: Handle NULL devs argument in clBuildProgram

2012-07-01 Thread Francisco Jerez
Tom Stellard writes: > On Fri, Jun 29, 2012 at 12:18:15AM +0200, Francisco Jerez wrote: >> Tom Stellard writes: >> >> > If devs is NULL, then the kernel should be compiled for all devices >> > associated with the program's context. >> > --- >> > src/gallium/state_trackers/clover/api/program.cp