Re: [Mesa-dev] [PATCH 01/13] i965: Allow stencil to be used for sampling and as render target

2014-05-09 Thread Kenneth Graunke
On 05/09/2014 09:50 PM, Pohjolainen, Topi wrote: > On Fri, May 09, 2014 at 05:07:44PM -0700, Kenneth Graunke wrote: >> On 05/09/2014 01:28 AM, Topi Pohjolainen wrote: >>> Signed-off-by: Topi Pohjolainen >>> --- >>> src/mesa/drivers/dri/i965/brw_surface_formats.c | 7 +-- >>> 1 file changed, 5

Re: [Mesa-dev] [PATCH 01/13] i965: Allow stencil to be used for sampling and as render target

2014-05-09 Thread Pohjolainen, Topi
On Fri, May 09, 2014 at 05:07:44PM -0700, Kenneth Graunke wrote: > On 05/09/2014 01:28 AM, Topi Pohjolainen wrote: > > Signed-off-by: Topi Pohjolainen > > --- > > src/mesa/drivers/dri/i965/brw_surface_formats.c | 7 +-- > > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/src/

[Mesa-dev] Mesa 10.2 release candidate 2

2014-05-09 Thread Ian Romanick
(This is a re-send with a GPG signature.) Mesa 10.2 release candidate 2 is now available for testing. The current plan of record is to have an additional release candidate each Friday until the 10.2 release on Friday, May 30th (correcte from the RC1 announcement e-mail). Note: there is a possibl

[Mesa-dev] Mesa 10.2 release candidate 2

2014-05-09 Thread Ian Romanick
Mesa 10.2 release candidate 2 is now available for testing. The current plan of record is to have an additional release candidate each Friday until the 10.2 release on Friday, May 30th (correcte from the RC1 announcement e-mail). Note: there is a possible front-buffer rendering regression in the

[Mesa-dev] [PATCH] nv50: fix setting of texture ms info to be per-stage

2014-05-09 Thread Ilia Mirkin
Different textures may be bound to each slot for each stage. So we need to be able to upload ms parameters for each one without stages overwriting each other. Signed-off-by: Ilia Mirkin Cc: "10.1 10.2" --- src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nv50.cpp | 4 src/gallium/driv

[Mesa-dev] [PATCH 1/3] dri_util: set implemented version of the DRI_CORE extension

2014-05-09 Thread Emil Velikov
... rather than the one defined in our internal interface (dri_interface.h) Signed-off-by: Emil Velikov --- src/mesa/drivers/dri/common/dri_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/common/dri_util.c b/src/mesa/drivers/dri/common/dri_util.c

[Mesa-dev] [PATCH 2/3] gallium/egl: st_profiles are build time decision, treat them as such

2014-05-09 Thread Emil Velikov
The profiles are present depending on the defines at build time. Drop the extra functions and feed the defines directly into the state-tracker at build time. Cc: Chia-I Wu Signed-off-by: Emil Velikov --- src/gallium/state_trackers/egl/Android.mk | 5 +++- src/gallium/state_trackers/eg

[Mesa-dev] [PATCH 3/3] glx: do not leak dri3Display

2014-05-09 Thread Emil Velikov
Cc: "10.1 10.2" Cc: Keith Packard Signed-off-by: Emil Velikov --- src/glx/glxext.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/src/glx/glxext.c b/src/glx/glxext.c index 2931790..a7be2d9 100644 --- a/src/glx/glxext.c +++ b/src/glx/glxext.c @@ -249,6 +249,12 @@ glx_display_free(stru

Re: [Mesa-dev] Mesa (10.2): i965: Always intel_prepare_render() after invalidating front buffers.

2014-05-09 Thread Ian Romanick
I just noticed that this commit breaks piglit's read-front on both master and, sadly, 10.2. I'm going to revert it from 10.2 so that I can release RC2 without regressions. :( On 05/07/2014 09:51 AM, Ian Romanick wrote: > Module: Mesa > Branch: 10.2 > Commit: a1dd1e62fa911a593cca354349e43149bd5f6e

Re: [Mesa-dev] [PATCH] configure.ac: Remove -fstack-protector-strong from LLVM flags.

2014-05-09 Thread Emil Velikov
On 10/05/14 02:28, Vinson Lee wrote: > -fstack-protector-strong is not supported by clang. > > This patch fixes this build error on Fedora 20 with clang. > > CXX gallivm/lp_bld_debug.lo > clang: error: unknown argument: '-fstack-protector-strong' > fwiw clang gained support for stack-prot

[Mesa-dev] [PATCH] configure.ac: Remove -fstack-protector-strong from LLVM flags.

2014-05-09 Thread Vinson Lee
-fstack-protector-strong is not supported by clang. This patch fixes this build error on Fedora 20 with clang. CXX gallivm/lp_bld_debug.lo clang: error: unknown argument: '-fstack-protector-strong' Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=75010 Signed-off-by: Vinson Lee ---

[Mesa-dev] [Bug 78403] query_renderer_implementation_unittest.cpp:144:4: error: expected primary-expression before ‘.’ token

2014-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78403 Emil Velikov changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Mesa-dev] [Bug 78225] Compile error due to undefined reference to `gbm_dri_backend', fix attached

2014-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78225 Emil Velikov changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [Mesa-dev] [PATCH 1/2] configure: error out of building GBM without dri

2014-05-09 Thread Emil Velikov
On 09/05/14 23:14, Kenneth Graunke wrote: > On 05/05/2014 02:09 PM, Emil Velikov wrote: >> Both backends require --enable-dri, and building an empty libgbm >> makes little to no sense. Error out at configure to prevent the >> user from shooting themselves in the foot. >> >> Bugzilla: https://bugs.f

Re: [Mesa-dev] [PATCH] glsl: Do not call lhs->variable_referenced() multiple times

2014-05-09 Thread Kenneth Graunke
On 05/08/2014 11:50 PM, Iago Toral Quiroga wrote: > Instead take the result from the first call and use it where needed. > --- > src/glsl/ast_to_hir.cpp | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp > index 7516c33.

Re: [Mesa-dev] Meta path for gen8 stencil

2014-05-09 Thread Kenneth Graunke
On 05/09/2014 01:28 AM, Topi Pohjolainen wrote: > I have the corresponding bits also for gen6-7, but there is a little > work left in that front. Passes all the relevant piglit tests on bdw. > > Topi Pohjolainen (13): > i965: Allow stencil to be used for sampling and as render target > i965/wm

Re: [Mesa-dev] [PATCH 01/13] i965: Allow stencil to be used for sampling and as render target

2014-05-09 Thread Kenneth Graunke
On 05/09/2014 01:28 AM, Topi Pohjolainen wrote: > Signed-off-by: Topi Pohjolainen > --- > src/mesa/drivers/dri/i965/brw_surface_formats.c | 7 +-- > 1 file changed, 5 insertions(+), 2 deletions(-) > diff --git a/src/mesa/drivers/dri/i965/brw_surface_formats.c > b/src/mesa/drivers/dri/i965/br

Re: [Mesa-dev] [PATCH 13/13] i965/fb: Use meta path for stencil blits

2014-05-09 Thread Kenneth Graunke
On 05/09/2014 01:28 AM, Topi Pohjolainen wrote: > This is effective only on gen8 for now as previous generations still > go through blorp. > > Signed-off-by: Topi Pohjolainen > --- > src/mesa/drivers/dri/i965/intel_fbo.c | 9 + > 1 file changed, 9 insertions(+) > > diff --git a/src/mesa

Re: [Mesa-dev] [PATCH 1/2] configure: error out of building GBM without dri

2014-05-09 Thread Kenneth Graunke
On 05/05/2014 02:09 PM, Emil Velikov wrote: > Both backends require --enable-dri, and building an empty libgbm > makes little to no sense. Error out at configure to prevent the > user from shooting themselves in the foot. > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=78225 > Cc: "10.1

Re: [Mesa-dev] [PATCH] ralloc: Omit detailed license information about talloc.

2014-05-09 Thread Jose Fonseca
- Original Message - > On 05/09/2014 12:48 PM, Jose Fonseca wrote: > > > > > > - Original Message - > >> On Fri, May 9, 2014 at 2:55 AM, wrote: > >>> From: José Fonseca > >>> > >>> That information misleads source code auditing tools to think that > >>> ralloc itself is relea

Re: [Mesa-dev] [PATCH 2/2] i965: Stop doing remapping of "special" regs.

2014-05-09 Thread Kenneth Graunke
On 05/06/2014 03:47 PM, Eric Anholt wrote: > Now that we aren't using pixel_[xy] in live variables, nothing is looking > at these regs after the visitor stage. > --- > src/mesa/drivers/dri/i965/brw_fs.cpp | 37 > > 1 file changed, 37 deletions(-) > > diff --g

Re: [Mesa-dev] [PATCH 1/2] i965: Generalize the pixel_x/y workaround for all UW types.

2014-05-09 Thread Kenneth Graunke
On 05/06/2014 03:47 PM, Eric Anholt wrote: > This is the only case where a fs_reg in brw_fs_visitor is used during > optimization/code generation, and it meant that optimizations had to be > careful to not move pixel_x/y's register number without updating it. > > Additionally, it turns out we had

Re: [Mesa-dev] [PATCH] ralloc: Omit detailed license information about talloc.

2014-05-09 Thread Kenneth Graunke
On 05/09/2014 12:48 PM, Jose Fonseca wrote: > > > - Original Message - >> On Fri, May 9, 2014 at 2:55 AM, wrote: >>> From: José Fonseca >>> >>> That information misleads source code auditing tools to think that >>> ralloc itself is released under LGPL v3. >>> >>> Instead, simply state

Re: [Mesa-dev] [PATCH] ralloc: Omit detailed license information about talloc.

2014-05-09 Thread Jose Fonseca
- Original Message - > On Fri, May 9, 2014 at 2:55 AM, wrote: > > From: José Fonseca > > > > That information misleads source code auditing tools to think that > > ralloc itself is released under LGPL v3. > > > > Instead, simply state talloc is not licensed under a permissive license.

Re: [Mesa-dev] [PATCH] i965: fix size assert for gen7 in brw_init_compaction_tables()

2014-05-09 Thread Matt Turner
Reviewed-by: Matt Turner I'll commit this. ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH 2/2] i965: Stop doing remapping of "special" regs.

2014-05-09 Thread Matt Turner
On Tue, May 6, 2014 at 3:47 PM, Eric Anholt wrote: > Now that we aren't using pixel_[xy] in live variables, nothing is looking > at these regs after the visitor stage. > --- > src/mesa/drivers/dri/i965/brw_fs.cpp | 37 > > 1 file changed, 37 deletions(-) > >

[Mesa-dev] [Bug 78403] query_renderer_implementation_unittest.cpp:144:4: error: expected primary-expression before ‘.’ token

2014-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78403 --- Comment #2 from Vinson Lee --- Verified attachment 98641 fixes the build error. Tested-by: Vinson Lee -- You are receiving this mail because: You are the assignee for the bug. ___ mesa-dev maili

Re: [Mesa-dev] [PATCH] ralloc: Omit detailed license information about talloc.

2014-05-09 Thread Jordan Justen
On Fri, May 9, 2014 at 2:55 AM, wrote: > From: José Fonseca > > That information misleads source code auditing tools to think that > ralloc itself is released under LGPL v3. > > Instead, simply state talloc is not licensed under a permissive license. > --- > src/glsl/ralloc.h | 7 +++ > 1 f

Re: [Mesa-dev] [PATCH] glsl: Rename linker's is_varying_var

2014-05-09 Thread Anuj Phogat
On Thu, May 8, 2014 at 4:28 PM, Chris Forbes wrote: > > Both the ast->IR and linker have functions with this name, but different > behavior. > > Rename the linker's version to var_counts_against_varying_limit to be > closer to what it is actually used for. > > Suggested by Ian a while back. > > Si

Re: [Mesa-dev] [PATCH 1/2] configure: error out of building GBM without dri

2014-05-09 Thread Emil Velikov
ping for this and [PATCH 2/2] docs: Add a note about llvm-shared-libs and libxatracker On 05/05/14 22:09, Emil Velikov wrote: > Both backends require --enable-dri, and building an empty libgbm > makes little to no sense. Error out at configure to prevent the > user from shooting themselves in the

Re: [Mesa-dev] [PATCH 4/4] targets/libgl-xlib: hide all the exported symbol mayhem

2014-05-09 Thread Emil Velikov
Ping Btw the TODO list here was for my personal reference, I'll change/nuke it before pushing. Cheers, Emil On 02/05/14 22:02, Emil Velikov wrote: > TODO: > - properly cleanup all the _glapi* symbols > - XMesa* > -- no sign of the header even being distributed > -- mesa-demos uses it to the

Re: [Mesa-dev] [PATCH 3/4] targets/osmesa: limit the amount of exported symbols

2014-05-09 Thread Emil Velikov
ping, Brian, you seem to be the only person that came near osmesa over the last few years. Can you take a look at the patch below? Cheers Emil On 02/05/14 22:02, Emil Velikov wrote: > Explicitly list all the OSMesa* symbols and wildcast the gl* > ones. > > Cc: Brian Paul > Signed-off-by: Emil

Re: [Mesa-dev] [PATCH 2/4] targets/xa: limit the amount of exported symbols

2014-05-09 Thread Emil Velikov
ping Thomas, Rob, Can you please take a look if the patch makes sense ? I have double checked that only the required functions are exported although I may have missed something. IMHO you both know XA API a lot better than me :) Thanks Emil On 02/05/14 22:02, Emil Velikov wrote: > In the presence

Re: [Mesa-dev] [PATCH] ralloc: Omit detailed license information about talloc.

2014-05-09 Thread Kenneth Graunke
On 05/09/2014 02:55 AM, jfons...@vmware.com wrote: > From: José Fonseca > > That information misleads source code auditing tools to think that > ralloc itself is released under LGPL v3. > > Instead, simply state talloc is not licensed under a permissive license. > --- > src/glsl/ralloc.h | 7 ++

Re: [Mesa-dev] [PATCH] i965: Fix GPU hangs on Broadwell in shaders with some control flow.

2014-05-09 Thread Jordan Justen
Reviewed-by: Jordan Justen On Thu, May 8, 2014 at 4:44 PM, Kenneth Graunke wrote: > According to the documentation, we need to set the source 0 register > type to IMM for flow control instructions that have both JIP and UIP. > > Fixes GPU hangs in approximately 10 Piglit tests, 5 es3conform test

[Mesa-dev] [Bug 78496] New: Some data files not using DEMOS_DATA_DIR

2014-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78496 Priority: medium Bug ID: 78496 Assignee: mesa-dev@lists.freedesktop.org Summary: Some data files not using DEMOS_DATA_DIR Severity: normal Classification: Unclassified OS: Al

[Mesa-dev] [Bug 57013] Enable --without-glut

2014-05-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57013 --- Comment #2 from Drew Moseley --- Created attachment 98768 --> https://bugs.freedesktop.org/attachment.cgi?id=98768&action=edit Updated patch. I think embedding "/lib" in the GLUT_LIBS definition makes this not work on 64-bit systems that u

Re: [Mesa-dev] Mesa 10.1.2

2014-05-09 Thread Carl Worth
Thomas Hellstrom writes: > The reason it was CC'd stable was that it appeared to fix a rendering > problem that we were seeing, but I should definitely have tested this > more thoroughly. :( No worries. It happens to all of us at times. > An unfortunate situation but the sooner we could cut a 10

[Mesa-dev] Mesa 10.1.3

2014-05-09 Thread Carl Worth
Mesa 10.1.3 has been released. Mesa 10.1.3 is a bug fix release which fixes bugs fixed since the 10.1.2 release, (see below for a list of changes). Note: Mesa 10.1.3 is being released sooner than originally scheduled to make available a fix for a performance rgression that was inadvertently introd

[Mesa-dev] [PATCH] i965/fs: Fix gen<6 LRP opcode

2014-05-09 Thread Juha-Pekka Heikkila
On ILK implicit accumulator write from MUL opcode seem to behave sometime unexpected. This patch change implicit accumulator write to explicit on emitting LRP for gen<6. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77707 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77703 Signed

Re: [Mesa-dev] [PATCH] ralloc: Omit detailed license information about talloc.

2014-05-09 Thread Brian Paul
On 05/09/2014 03:55 AM, jfons...@vmware.com wrote: From: José Fonseca That information misleads source code auditing tools to think that ralloc itself is released under LGPL v3. Instead, simply state talloc is not licensed under a permissive license. --- src/glsl/ralloc.h | 7 +++ 1 fil

[Mesa-dev] [PATCH] ralloc: Omit detailed license information about talloc.

2014-05-09 Thread jfonseca
From: José Fonseca That information misleads source code auditing tools to think that ralloc itself is released under LGPL v3. Instead, simply state talloc is not licensed under a permissive license. --- src/glsl/ralloc.h | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git

[Mesa-dev] [PATCH 13/13] i965/fb: Use meta path for stencil blits

2014-05-09 Thread Topi Pohjolainen
This is effective only on gen8 for now as previous generations still go through blorp. Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/intel_fbo.c | 9 + 1 file changed, 9 insertions(+) diff --git a/src/mesa/drivers/dri/i965/intel_fbo.c b/src/mesa/drivers/dri/i965/intel_f

[Mesa-dev] [PATCH 11/13] meta: Refactor state save/restore for framebuffer texture blits

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/common/meta.h | 15 ++ src/mesa/drivers/common/meta_blit.c | 59 +++-- 2 files changed, 52 insertions(+), 22 deletions(-) diff --git a/src/mesa/drivers/common/meta.h b/src/mesa/drivers/common/meta.h

[Mesa-dev] [PATCH 12/13] i965/meta: Stencil blits

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/Makefile.sources| 1 + src/mesa/drivers/dri/i965/brw_context.h | 6 + src/mesa/drivers/dri/i965/brw_meta_stencil_blit.c | 506 ++ 3 files changed, 513 insertions(+) create mode 100644 src/mesa

[Mesa-dev] [PATCH 08/13] meta: Merge compiling and linking of blit program

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/common/meta.c | 45 - src/mesa/drivers/common/meta.h | 7 ++ src/mesa/drivers/common/meta_blit.c | 18 +++ 3 files changed, 39 insertions(+), 31 deletions(-) diff --git a/src/mesa/

[Mesa-dev] [PATCH 07/13] i965/blorp: Expose coordinate scissoring and mirroring

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/Makefile.sources | 1 + src/mesa/drivers/dri/i965/brw_blorp_blit.cpp | 124 + src/mesa/drivers/dri/i965/brw_meta_util.c| 160 +++ src/mesa/drivers/dri/i965/brw_meta_util.h| 46 ++

[Mesa-dev] [PATCH 02/13] i965/wm: Surface state overrides for configuring w-tiled as y-tiled

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/brw_state.h| 6 ++ src/mesa/drivers/dri/i965/brw_wm_surface_state.c | 22 ++ 2 files changed, 28 insertions(+) diff --git a/src/mesa/drivers/dri/i965/brw_state.h b/src/mesa/drivers/dri/i965/brw_st

[Mesa-dev] [PATCH 04/13] i965/gen8: Allow stencil buffers to be configured as single sampled

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/gen8_surface_state.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/i965/gen8_surface_state.c b/src/mesa/drivers/dri/i965/gen8_surface_state.c index cc55bd9..32d1c33 100644 --- a

[Mesa-dev] [PATCH 01/13] i965: Allow stencil to be used for sampling and as render target

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/brw_surface_formats.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_surface_formats.c b/src/mesa/drivers/dri/i965/brw_surface_formats.c index 5907dd9..7ffa5c4 100644 --- a/src

[Mesa-dev] [PATCH 10/13] meta: Refactor configuration of renderbuffer sampling

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/common/meta.h | 5 + src/mesa/drivers/common/meta_blit.c | 38 - 2 files changed, 30 insertions(+), 13 deletions(-) diff --git a/src/mesa/drivers/common/meta.h b/src/mesa/drivers/common/meta.h inde

[Mesa-dev] [PATCH 09/13] meta: Refactor binding of renderbuffer as texture image

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/common/meta.h | 7 src/mesa/drivers/common/meta_blit.c | 70 + 2 files changed, 47 insertions(+), 30 deletions(-) diff --git a/src/mesa/drivers/common/meta.h b/src/mesa/drivers/common/meta.h index

[Mesa-dev] Meta path for gen8 stencil

2014-05-09 Thread Topi Pohjolainen
I have the corresponding bits also for gen6-7, but there is a little work left in that front. Passes all the relevant piglit tests on bdw. Topi Pohjolainen (13): i965: Allow stencil to be used for sampling and as render target i965/wm: Surface state overrides for configuring w-tiled as y-tiled

[Mesa-dev] [PATCH 06/13] i965: Extend brw_get_rb_for_first_slice() for specified level/layer

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/brw_context.h | 4 src/mesa/drivers/dri/i965/brw_meta_updownsample.c | 13 + 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i9

[Mesa-dev] [PATCH 03/13] i965/gen8: Use helper variables for surface parameters

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/gen8_surface_state.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/i965/gen8_surface_state.c b/src/mesa/drivers/dri/i965/gen8_surface_state.c index 66b9879..cc55bd9 100644 --- a/

[Mesa-dev] [PATCH 05/13] i965/gen8: Surface state overriding for stencil

2014-05-09 Thread Topi Pohjolainen
Signed-off-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/gen8_surface_state.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/i965/gen8_surface_state.c b/src/mesa/drivers/dri/i965/gen8_surface_state.c index 32d1c33..6e6b88a 100644 --- a