[Mesa-dev] [PATCH] mesa: Fix assertion error with glDebugMessageControl

2013-08-21 Thread Timothy Arceri
enums were being converted twice resulting in incorrect values. The extra conversion has been remove and the redundant assert is removed also. Signed-off-by: Timothy Arceri t_arc...@yahoo.com.au --- src/mesa/main/errors.c | 15 ++- 1 file changed, 2 insertions(+), 13 deletions(-)

[Mesa-dev] [PATCH 2/2] vdpau/decode: Fix comment.

2013-08-21 Thread Rico Schüller
--- src/gallium/state_trackers/vdpau/decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/state_trackers/vdpau/decode.c b/src/gallium/state_trackers/vdpau/decode.c index 684ded8..47ca229 100644 --- a/src/gallium/state_trackers/vdpau/decode.c +++

Re: [Mesa-dev] [PATCH 1/2] vl/query: Only support VDP_CHROMA_TYPE_420 for 12 bit formats.

2013-08-21 Thread Christian König
Reviewed and committed both patches. Thanks for the help, Christian. Am 21.08.2013 10:06, schrieb Rico Schüller: --- src/gallium/state_trackers/vdpau/query.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) ___ mesa-dev mailing list

[Mesa-dev] [Bug 68380] New: flink race on wayland

2013-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68380 Priority: medium Bug ID: 68380 Assignee: mesa-dev@lists.freedesktop.org Summary: flink race on wayland Severity: normal Classification: Unclassified OS: All

Re: [Mesa-dev] [PATCH] build: Add --enable-gallium-osmesa flag.

2013-08-21 Thread Brian Paul
On 08/20/2013 03:18 PM, Matt Turner wrote: The Gallium implementation is apparently not ready for regular consumption, so as much as I hate adding more build-time options, here's another. The intention was for the old/swrast version of OSMesa would wind up in lib/ while the gallium version

Re: [Mesa-dev] [PATCH] gallivm: unify sin and cos implementation

2013-08-21 Thread Roland Scheidegger
Am 21.08.2013 02:05, schrieb Roland Mainz: On Wed, Aug 21, 2013 at 1:45 AM, Roland Scheidegger srol...@vmware.com wrote: Am 21.08.2013 01:28, schrieb Roland Mainz: On Wed, Aug 21, 2013 at 1:12 AM, srol...@vmware.com wrote: From: Roland Scheidegger srol...@vmware.com [snip] Can you check

Re: [Mesa-dev] [PATCH 01/30] glsl: Refactor handling of gl_ClipDistance/gl_ClipVertex linkage rules for GS.

2013-08-21 Thread Paul Berry
On 20 August 2013 13:27, Chris Forbes chr...@ijw.co.nz wrote: Ken, I think the big win from using pass-by-pointer is that you can see what's happening at the call site. References' value syntax and pointer semantics is a weird mix. But that might just be the C programmer talking, as you

Re: [Mesa-dev] [PATCH] build: Add --enable-gallium-osmesa flag.

2013-08-21 Thread Armin K.
On 08/21/2013 04:06 PM, Brian Paul wrote: On 08/20/2013 03:18 PM, Matt Turner wrote: The Gallium implementation is apparently not ready for regular consumption, so as much as I hate adding more build-time options, here's another. The intention was for the old/swrast version of OSMesa would

[Mesa-dev] [PATCH] osmesa: Symlink shared library to LIB_DIR

2013-08-21 Thread Armin K
--- src/mesa/drivers/osmesa/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/drivers/osmesa/Makefile.am b/src/mesa/drivers/osmesa/Makefile.am index a1c0bb5..d09c18e 100644 --- a/src/mesa/drivers/osmesa/Makefile.am +++ b/src/mesa/drivers/osmesa/Makefile.am @@ -56,6 +56,7

Re: [Mesa-dev] [PATCH] build: Add --enable-gallium-osmesa flag.

2013-08-21 Thread Kevin H. Hobbs
On 08/21/2013 10:06 AM, Brian Paul wrote: On 08/20/2013 03:18 PM, Matt Turner wrote: The Gallium implementation is apparently not ready for regular consumption, so as much as I hate adding more build-time options, here's another. The intention was for the old/swrast version of OSMesa would

Re: [Mesa-dev] [PATCH 03/30] i965: Make brw_{program, shader, vec4, vs}.h safe to include from C++.

2013-08-21 Thread Paul Berry
On 20 August 2013 11:58, Kenneth Graunke kenn...@whitecape.org wrote: On 08/20/2013 11:30 AM, Paul Berry wrote: --- src/mesa/drivers/dri/i965/brw_**program.h | 8 src/mesa/drivers/dri/i965/brw_**shader.cpp | 2 +- src/mesa/drivers/dri/i965/brw_**shader.h | 7 ++-

[Mesa-dev] [PATCH 2/2] gallivm: add comment for bogus min/mag filter selection with nearest mip filter

2013-08-21 Thread sroland
From: Roland Scheidegger srol...@vmware.com Detected this hunting some other bug, not sure if it really needs fixing but it is definitely wrong. --- src/gallium/auxiliary/gallivm/lp_bld_sample.c |8 src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c |2 +-

[Mesa-dev] [PATCH 1/2] gallivm: fix rho calculation for 1d case

2013-08-21 Thread sroland
From: Roland Scheidegger srol...@vmware.com Was using wrong (undefined) vector element (the elements are at 0/2 position, not 0/1). --- src/gallium/auxiliary/gallivm/lp_bld_sample.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[Mesa-dev] [PATCH] gallium: Support PIPE_FORMAT_R10G10B10A2_UINT.

2013-08-21 Thread jfonseca
From: José Fonseca jfons...@vmware.com Same as PIPE_FORMAT_B10G10R10A2_UINT but without the swizzling. --- src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c | 1 + src/gallium/auxiliary/util/u_format.csv | 1 + src/gallium/include/pipe/p_format.h | 1 + 3 files changed, 3

Re: [Mesa-dev] [PATCH 27/30] i965/gs: Allocate push constant space.

2013-08-21 Thread Paul Berry
On 20 August 2013 14:04, Kenneth Graunke kenn...@whitecape.org wrote: On 08/20/2013 11:30 AM, Paul Berry wrote: Previously, we would always use the same push constant allocation regardless of what shader programs were being run: the available push constant space was split into 2 equal size

Re: [Mesa-dev] [PATCH] gallium: Support PIPE_FORMAT_R10G10B10A2_UINT.

2013-08-21 Thread Roland Scheidegger
Am 21.08.2013 17:50, schrieb jfons...@vmware.com: From: José Fonseca jfons...@vmware.com Same as PIPE_FORMAT_B10G10R10A2_UINT but without the swizzling. --- src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c | 1 + src/gallium/auxiliary/util/u_format.csv | 1 +

Re: [Mesa-dev] [PATCH] osmesa: Symlink shared library to LIB_DIR

2013-08-21 Thread Brian Paul
On 08/21/2013 08:44 AM, Armin K wrote: --- src/mesa/drivers/osmesa/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/drivers/osmesa/Makefile.am b/src/mesa/drivers/osmesa/Makefile.am index a1c0bb5..d09c18e 100644 --- a/src/mesa/drivers/osmesa/Makefile.am +++

Re: [Mesa-dev] [PATCH] osmesa: Symlink shared library to LIB_DIR

2013-08-21 Thread Armin K.
On 21.8.2013 18:07, Brian Paul wrote: On 08/21/2013 08:44 AM, Armin K wrote: --- src/mesa/drivers/osmesa/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/drivers/osmesa/Makefile.am b/src/mesa/drivers/osmesa/Makefile.am index a1c0bb5..d09c18e 100644 ---

Re: [Mesa-dev] [PATCH 2/2] gallivm: add comment for bogus min/mag filter selection with nearest mip filter

2013-08-21 Thread Jose Fonseca
Series looks good. You might want to promote XXX to FIXME. Fixing wouldn't be hard -- just need to pass some additional parameters to this function, so that we can check that MIN/MAG filter are same. Jose - Original Message - From: Roland Scheidegger srol...@vmware.com Detected

[Mesa-dev] [PATCH] radeonsi: Fix y/z/w component values of TGSI_SEMANTIC_FOG pixel shader inputs

2013-08-21 Thread Michel Dänzer
From: Michel Dänzer michel.daen...@amd.com They are defined as constant 0.0/0.0/1.0. Three more little piglits. Cc: mesa-sta...@lists.freedesktop.org Signed-off-by: Michel Dänzer michel.daen...@amd.com --- src/gallium/drivers/radeonsi/radeonsi_shader.c | 18 ++ 1 file changed,

Re: [Mesa-dev] [PATCH 2/2] gallivm: add comment for bogus min/mag filter selection with nearest mip filter

2013-08-21 Thread Roland Scheidegger
Am 21.08.2013 18:30, schrieb Jose Fonseca: Series looks good. You might want to promote XXX to FIXME. Fixing wouldn't be hard -- just need to pass some additional parameters to this function, so that we can check that MIN/MAG filter are same. Ok I'll make it FIXME. I thought it would cause

Re: [Mesa-dev] [PATCH 03/30] i965: Make brw_{program, shader, vec4, vs}.h safe to include from C++.

2013-08-21 Thread Kenneth Graunke
On 08/21/2013 07:54 AM, Paul Berry wrote: On 20 August 2013 11:58, Kenneth Graunke kenn...@whitecape.org mailto:kenn...@whitecape.org wrote: On 08/20/2013 11:30 AM, Paul Berry wrote: --- src/mesa/drivers/dri/i965/brw___program.h | 8

[Mesa-dev] [PATCH] R600/SI: Fix another case of illegal VGPR to SGPR copy

2013-08-21 Thread Tom Stellard
From: Tom Stellard thomas.stell...@amd.com This fixes a crash in Unigine Tropics. --- lib/Target/R600/SIFixSGPRCopies.cpp | 2 +- test/CodeGen/R600/sgpr-copy.ll | 145 +++- 2 files changed, 143 insertions(+), 4 deletions(-) diff --git

Re: [Mesa-dev] [PATCH 14/30] i965/gs: Add GS_OPCODE_URB_WRITE.

2013-08-21 Thread Kenneth Graunke
On 08/20/2013 11:30 AM, Paul Berry wrote: --- src/mesa/drivers/dri/i965/brw_defines.h | 9 + src/mesa/drivers/dri/i965/brw_eu.h | 6 ++ src/mesa/drivers/dri/i965/brw_eu_emit.c | 4 ++-- src/mesa/drivers/dri/i965/brw_shader.cpp| 5 -

Re: [Mesa-dev] [PATCH 14/30] i965/gs: Add GS_OPCODE_URB_WRITE.

2013-08-21 Thread Kenneth Graunke
On 08/20/2013 11:30 AM, Paul Berry wrote: [snip] diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index ae4cab5..9053ea2 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -252,6 +252,12 @@ enum brw_urb_write_flags {

[Mesa-dev] [PATCH] i965: Fix misapplication of gles3 srgb workaround

2013-08-21 Thread Chad Versace
Fixes inconsistent failure of gles2conform/GL2Tests/glUniform/glUniform.test under gnome-shell. What follows is a description of the bug and its fix. When intel_update_renderbuffers() allocates a miptree for a winsys renderbuffer, it propagates the renderbuffer's format to become also the

[Mesa-dev] PATCH: R600 + SI: Add support for lds atomic add

2013-08-21 Thread Tom Stellard
Hi, The attached patches fix some LDS bugs on SI and add support for atomic add for R600 and SI. Please Review. -Tom From 0447b0918efca9000e66414e9ff1bd291936f702 Mon Sep 17 00:00:00 2001 From: Tom Stellard thomas.stell...@amd.com Date: Wed, 21 Aug 2013 11:35:27 -0400 Subject: [PATCH 1/4]

[Mesa-dev] [PATCH] R600: Fix segfault in R600TextureIntrinsicReplacer

2013-08-21 Thread Tom Stellard
From: Tom Stellard thomas.stell...@amd.com This pass was segfaulting when it ran into a non-intrinsic function call. Function calls are not supported, so now instead of segfaulting, we will get an assertion failure with a nice error message. I'm not sure how to test this using lit. ---

Re: [Mesa-dev] [PATCH] i965: Fix misapplication of gles3 srgb workaround

2013-08-21 Thread Ian Romanick
On 08/21/2013 11:09 AM, Chad Versace wrote: Fixes inconsistent failure of gles2conform/GL2Tests/glUniform/glUniform.test under gnome-shell. What follows is a description of the bug and its fix. When intel_update_renderbuffers() allocates a miptree for a winsys renderbuffer, it propagates the

Re: [Mesa-dev] [PATCH] R600: Fix segfault in R600TextureIntrinsicReplacer

2013-08-21 Thread Aaron Watry
I'm not sure about the lit test, but this definitely made it much more obvious to me what was failing in my VP8 decoder on R600 in OpenCL. Old: Stack dump: 0.Running pass 'Function Pass Manager' on module 'radeon'. 1.Running pass 'R600 Texture Intrinsics Replacer' on function

Re: [Mesa-dev] Mesa 9.2 release candidate 1

2013-08-21 Thread Ian Romanick
On 08/19/2013 05:05 PM, Ian Romanick wrote: Mesa 9.2 release candidate 1 is now available for testing. The tag in the GIT repository for Mesa 9.2-rc1 is 'mesa-9.2-rc1'. Mesa 9.2 release candidate 1 is available for download at ftp://freedesktop.org/pub/mesa/9.2/ md5sums:

Re: [Mesa-dev] [PATCH 1/1] mesa: Properly set the fog scale (gl_Fog.scale) to +INF when fog start and end are equal.

2013-08-21 Thread Ian Romanick
On 08/17/2013 10:42 AM, Henri Verbeet wrote: This was originally introduced by commit ba47aabc9868b410cdfe3bc8b6d25a44a598cba2, but unfortunately the commit message doesn't go into much detail about why +INF would be a problem here. I don't see anything in the spec that would allow 1.0f here.

Re: [Mesa-dev] [PATCH] build: Add --enable-gallium-osmesa flag.

2013-08-21 Thread Matt Turner
On Wed, Aug 21, 2013 at 7:06 AM, Brian Paul bri...@vmware.com wrote: On 08/20/2013 03:18 PM, Matt Turner wrote: The Gallium implementation is apparently not ready for regular consumption, so as much as I hate adding more build-time options, here's another. The intention was for the

Re: [Mesa-dev] [PATCH] i965: Fix misapplication of gles3 srgb workaround

2013-08-21 Thread Chad Versace
On 08/21/2013 11:57 AM, Ian Romanick wrote: On 08/21/2013 11:09 AM, Chad Versace wrote: Fixes inconsistent failure of gles2conform/GL2Tests/glUniform/glUniform.test under gnome-shell. What follows is a description of the bug and its fix. When intel_update_renderbuffers() allocates a miptree

Re: [Mesa-dev] [PATCH] R600/SI: Fix another case of illegal VGPR to SGPR copy

2013-08-21 Thread Laurent Carlier
Le mercredi 21 août 2013 14:00:12 Tom Stellard a écrit : From: Tom Stellard thomas.stell...@amd.com This fixes a crash in Unigine Tropics. --- This fixes the following failure and now Tropics woks fine for me: Tropics: SIInstrInfo.cpp:94: virtual void

Re: [Mesa-dev] [PATCH] build: Add --enable-gallium-osmesa flag.

2013-08-21 Thread Brian Paul
On 08/21/2013 05:03 PM, Matt Turner wrote: On Wed, Aug 21, 2013 at 7:06 AM, Brian Paul bri...@vmware.com wrote: On 08/20/2013 03:18 PM, Matt Turner wrote: The Gallium implementation is apparently not ready for regular consumption, so as much as I hate adding more build-time options, here's

Re: [Mesa-dev] [PATCH] build: Add --enable-gallium-osmesa flag.

2013-08-21 Thread Marek Olšák
I think the correct solution is to make the two conflicting libs mutually exclusive. If both are enabled in the build at the same time, then let's print a configure error. I don't think installing a lib to a non-standard directory like /usr/lib/gallium would help anybody. Marek On Thu, Aug 22,

Re: [Mesa-dev] [PATCH] build: Add --enable-gallium-osmesa flag.

2013-08-21 Thread Matt Turner
On Wed, Aug 21, 2013 at 5:19 PM, Marek Olšák mar...@gmail.com wrote: I think the correct solution is to make the two conflicting libs mutually exclusive. If both are enabled in the build at the same time, then let's print a configure error. I don't think installing a lib to a non-standard

[Mesa-dev] [PATCH] glsl: propagate max_array_access through function calls

2013-08-21 Thread Dominik Behr
Fixes a bug where if an uniform array is passed to a function the accesses to the array are not propagated so later all but the first vector of the uniform array are removed in parcel_out_uniform_storage resulting in broken shaders and out of bounds access to arrays in

[Mesa-dev] [PATCH 2/2] gallivm: do per-element lod for lod bias and explicit derivs too

2013-08-21 Thread sroland
From: Roland Scheidegger srol...@vmware.com Except for explicit derivs with cube maps which are very bogus anyway. Just like explicit lod this is only used if no_quad_lod is set in GALLIVM_DEBUG env var. Minification is terrible on cpus which don't support true vector shifts (but should work

[Mesa-dev] [PATCH 1/2] gallivm: (trivial) fix linear aos sampling of 3d compressed formats

2013-08-21 Thread sroland
From: Roland Scheidegger srol...@vmware.com block size depth is always 1 even for compressed formats (unless someone invents true 3d compressed formats at least which we can't represent). Nearest (and soa) path had it right. --- src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c |4 ++-- 1

[Mesa-dev] [Bug 68409] New: [llvmpipe] piglit texwrap GL_ARB_texture_rg-int bordercolor regression

2013-08-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68409 Priority: medium Bug ID: 68409 Keywords: regression CC: srol...@vmware.com Assignee: mesa-dev@lists.freedesktop.org Summary: [llvmpipe] piglit texwrap GL_ARB_texture_rg-int

[Mesa-dev] [PATCH] gallivm: (trivial) fix int/uint border color clamping

2013-08-21 Thread sroland
From: Roland Scheidegger srol...@vmware.com Just a copy paste error. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=68409. Note that the test passing before probably simply means it doesn't verify clamping of the border color itself as required by the OpenGL spec. ---

[Mesa-dev] [PATCH] i915: Optimize SEQ and SNE when two operands are uniforms

2013-08-21 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com SEQ and SNE are not native i915 instructions, so they each generate at least 3 instructions. If both operands are uniforms or constants, we get 5 instructions like: U[1] = MOV CONST[1] U[0].xyz = SGE CONST[0]., U[1]

[Mesa-dev] (no subject)

2013-08-21 Thread Maxence Le Doré
As ARB_seamless_cubemap_per_texture is word-to-word same as AMD_seamless_cubemap_per_texture and this last already implemented we can enable the ARB extension. This patch is a candidate for it : From eb2cf312a7c7ba70f22f8eb8d66aab8a1d78b6d9 Mon Sep 17 00:00:00 2001 From:

[Mesa-dev] enable ARB_seamless_cubemap_per_texture

2013-08-21 Thread Maxence Le Doré
As ARB_seamless_cubemap_per_texture is word-to-word same as AMD_seamless_cubemap_per_texture and this last already implemented we can enable the ARB extension. This patch is a candidate for it : From eb2cf312a7c7ba70f22f8eb8d66aab8a1d78b6d9 Mon Sep 17 00:00:00 2001 From:

Re: [Mesa-dev] (no subject)

2013-08-21 Thread Matt Turner
Your mail client line wrapped the patch, so it can't be applied. Please resend with git send-email. ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH 4/4] glsl: Give a warning, not an error, for UBO qualifiers on struct fields.

2013-08-21 Thread Ian Romanick
On 08/15/2013 11:27 AM, Matt Turner wrote: Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=59648 --- src/glsl/ast_to_hir.cpp | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index c2fdbd5..f35c11f 100644 ---

Re: [Mesa-dev] [PATCH] i965: Fix misapplication of gles3 srgb workaround

2013-08-21 Thread Ian Romanick
On 08/21/2013 04:22 PM, Chad Versace wrote: On 08/21/2013 11:57 AM, Ian Romanick wrote: On 08/21/2013 11:09 AM, Chad Versace wrote: Fixes inconsistent failure of gles2conform/GL2Tests/glUniform/glUniform.test under gnome-shell. What follows is a description of the bug and its fix. When

Re: [Mesa-dev] [PATCH 4/4] glsl: Give a warning, not an error, for UBO qualifiers on struct fields.

2013-08-21 Thread Ian Romanick
On 08/21/2013 09:02 PM, Ian Romanick wrote: On 08/15/2013 11:27 AM, Matt Turner wrote: Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=59648 --- src/glsl/ast_to_hir.cpp | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/glsl/ast_to_hir.cpp

Re: [Mesa-dev] [PATCH 1/4] glsl: Rename ubo_qualifiers_valid to ubo_qualifiers_allowed.

2013-08-21 Thread Ian Romanick
With my change to patch 4 (lol), the series is: Reviewed-by: Ian Romanick ian.d.roman...@intel.com On 08/15/2013 11:27 AM, Matt Turner wrote: The variable means that UBO qualifiers are allowed in a particular context (e.g., not allowed in a struct field declaration), rather than a particular

Re: [Mesa-dev] [Mesa-stable] [PATCH][V3] build: fix out-of-tree builds in gallium/auxiliary

2013-08-21 Thread Ian Romanick
ping On 08/06/2013 11:09 AM, Ross Burton wrote: The rules were writing files to e.g. util/u_indices_gen.py, but in an out-of-tree build this directory doesn't exist in the build directory. So, create the directories just in case. NOTE: This is a candidate for the stable branches. Cc:

Re: [Mesa-dev] (no subject)

2013-08-21 Thread Ian Romanick
On 08/21/2013 08:46 PM, Maxence Le Doré wrote: As ARB_seamless_cubemap_per_texture is word-to-word same as AMD_seamless_cubemap_per_texture and this last already implemented we can enable the ARB extension. This patch is a candidate for it : Since the extensions are identical, we should expose

Re: [Mesa-dev] enable ARB_seamless_cubemap_per_texture

2013-08-21 Thread Kenneth Graunke
On 08/21/2013 08:47 PM, Maxence Le Doré wrote: As ARB_seamless_cubemap_per_texture is word-to-word same as AMD_seamless_cubemap_per_texture and this last already implemented we can enable the ARB extension. This patch is a candidate for it : They're actually a tiny bit different. From the ARB

Re: [Mesa-dev] [PATCH] i965: Fix misapplication of gles3 srgb workaround

2013-08-21 Thread Kenneth Graunke
On 08/21/2013 11:09 AM, Chad Versace wrote: Fixes inconsistent failure of gles2conform/GL2Tests/glUniform/glUniform.test under gnome-shell. What follows is a description of the bug and its fix. When intel_update_renderbuffers() allocates a miptree for a winsys renderbuffer, it propagates the

Re: [Mesa-dev] [Mesa-stable] [PATCH][V3] build: fix out-of-tree builds in gallium/auxiliary

2013-08-21 Thread Matt Turner
On Wed, Aug 21, 2013 at 9:14 PM, Ian Romanick i...@freedesktop.org wrote: ping Committed yesterday to master. Should I cherry-pick it to 9.2 now? ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org