[Mesa-dev] [PATCH] gallium/hud: add more options to customize HUD panes

2015-04-11 Thread Gediminas Jakutis
Extends the syntax of GALLIUM_HUD environment variable to: - Add options to set the size and exact location of each pane. - Add an option to limit the maximum allowed value of the X axis on a pane, clamping the graph down to not go above this value. - Add an option to auto-adjust the value of the

[Mesa-dev] [Bug 89773] "builtin_functions.cpp", line 3218: Error: INFINITY is not defined.

2015-04-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=89773 Vinson Lee changed: What|Removed |Added Keywords||bisected Blocks|

[Mesa-dev] [Bug 79706] [TRACKER] Mesa regression tracker

2015-04-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79706 Vinson Lee changed: What|Removed |Added Depends on||89773 -- You are receiving this mail becau

[Mesa-dev] [Bug 89960] [softpipe] piglit copy-pixels regreession

2015-04-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=89960 Vinson Lee changed: What|Removed |Added Blocks||79706 -- You are receiving this mail becau

[Mesa-dev] [Bug 79706] [TRACKER] Mesa regression tracker

2015-04-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79706 Vinson Lee changed: What|Removed |Added Depends on||89960 -- You are receiving this mail becau

[Mesa-dev] [Bug 89330] piglit glsl-1.50 invariant-qualifier-in-out-block-01 regression

2015-04-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=89330 Vinson Lee changed: What|Removed |Added Blocks||79706 -- You are receiving this mail becau

[Mesa-dev] [Bug 79706] [TRACKER] Mesa regression tracker

2015-04-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79706 Vinson Lee changed: What|Removed |Added Depends on||89330 -- You are receiving this mail becau

[Mesa-dev] [PATCH 3/3] util: Change util/set to use quadratic probing

2015-04-11 Thread Thomas Helland
The same rationale applies here as for the hash table. Power of two size should give better performance, and using the algorithm hash = sh + i/2 + i*i/2 should result in only distinct hash values when hitting collisions. Difference at 95.0% confidence -7.9505 +/- 2.44011 -5.04357% +/- 1.54

[Mesa-dev] [PATCH 1/3] util/tests: Expand collision test for hash table

2015-04-11 Thread Thomas Helland
Add a test to exercise a worst case collision scenario that may cause us to not be able to find an empty slot in the table even though it is not full. This hits the bug in my last revision of the series converting the hash table to quadratic probing. Signed-off-by: Thomas Helland --- src/util/te

[Mesa-dev] [PATCH 2/3] util: Change hash_table to use quadratic probing

2015-04-11 Thread Thomas Helland
This should give better cache locality, less memory consumption, less code, and should also be faster since we avoid modulo operations. Also change table size to be power of two. This gives better performance as we can do bitmasking instead of modulo operations for fitting the hash in the address s

[Mesa-dev] [PATCH 0/3] Hash-table and hash-set, V4

2015-04-11 Thread Thomas Helland
The performance numbers (shader-db runtime) are: Difference at 95.0% confidence -14.7608 +/- 3.36786 -9.05064% +/- 2.06501% (Original runtime was 160 seconds) While the profile data looked promising for increasing the table size we start with, decreasing load factor, and integer hashin

[Mesa-dev] [Bug 89018] Civilization: Beyond Earth terrain section not rendered

2015-04-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=89018 --- Comment #7 from Jason Ekstrand --- (In reply to Sami Liedes from comment #6) > I see this AFAICT exactly same issue with both radeonsi and swrast on recent > HEAD of mesa, so this is not Intel-specific. FWIW, I also tried with Mesa > 10.3.7 (

[Mesa-dev] [Bug 89018] Civilization: Beyond Earth terrain section not rendered

2015-04-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=89018 Sami Liedes changed: What|Removed |Added Status|NEEDINFO|NEW CC|

Re: [Mesa-dev] [PATCH] configure.ac: enable non-gallium assertions for people not using --enable-debug

2015-04-11 Thread Marek Olšák
The description should be "... for people not using --enable-debug and using -DDEBUG". Marek On Sat, Apr 11, 2015 at 9:57 PM, Matt Turner wrote: > On Sat, Apr 11, 2015 at 12:11 PM, Marek Olšák wrote: >> From: Marek Olšák >> >> --- >> configure.ac | 4 +++- >> 1 file changed, 3 insertions(+),

Re: [Mesa-dev] [PATCH] configure.ac: enable non-gallium assertions for people not using --enable-debug

2015-04-11 Thread Marek Olšák
The problem is NDEBUG is defined if --enable-debug isn't used. If I add -DDEBUG manually to CFLAGS, both DEBUG and NDEBUG will be defined. That means Gallium assertions will be enabled (because DEBUG is defined) and Mesa core assertion will be disabled (because NDEBUG is defined). I was about to s

Re: [Mesa-dev] [PATCH 0/3] Enable ARB_gpu_shader_fp64 for i965

2015-04-11 Thread Connor Abbott
On Sat, Apr 11, 2015 at 2:13 PM, Matt Turner wrote: > Readding mesa-dev@ to Cc. > > On Sat, Apr 11, 2015 at 11:06 AM, Darius Goad wrote: >> Well, I did make a v2, but all that did was fix a bug. How does this not >> come close? > > Well, for instance the i965 driver supports ~5 generations of > h

Re: [Mesa-dev] [PATCH 3/3 v5] i965/fs: Combine tex/fb_write operations (opt)

2015-04-11 Thread Kenneth Graunke
On Saturday, April 11, 2015 01:38:44 PM Ben Widawsky wrote: > Certain platforms support the ability to sample from a texture, and write it > out > to the file RT - thus saving a costly send instructions (note that this is a > potnential win if one wanted to backport to a tag that didn't have the p

Re: [Mesa-dev] Value Range Propagation in NIR (GSoC)

2015-04-11 Thread Connor Abbott
On Sat, Apr 11, 2015 at 3:12 PM, Thomas Helland wrote: >> Yes, copy propagation probably won't be so useful once we have value >> range propagation; the former is a special case of the latter. Note >> that we have a nifty way of actually doing the constant folding >> (nir_constant_expressions.py a

Re: [Mesa-dev] [PATCH 3/3 v5] i965/fs: Combine tex/fb_write operations (opt)

2015-04-11 Thread Jason Ekstrand
Reviewed-by: Jason Ekstrand On Sat, Apr 11, 2015 at 1:38 PM, Ben Widawsky wrote: > Certain platforms support the ability to sample from a texture, and write it > out > to the file RT - thus saving a costly send instructions (note that this is a > potnential win if one wanted to backport to a ta

[Mesa-dev] [PATCH 3/3 v5] i965/fs: Combine tex/fb_write operations (opt)

2015-04-11 Thread Ben Widawsky
Certain platforms support the ability to sample from a texture, and write it out to the file RT - thus saving a costly send instructions (note that this is a potnential win if one wanted to backport to a tag that didn't have the patch from Topi which removed excess MOVs from LOAD_PAYLOAD - 97caf5fa

[Mesa-dev] [PATCH] i965: Always use Y-tiled buffers on SKL+

2015-04-11 Thread Ben Widawsky
Starting with Skylake, the display engine is capable of scanning out from Y-tiled buffers. As such, we can and should use Y-tiling for better efficiency. Note that the buffer allocation done for mipmaps will already never allocate an X-tiled buffer for GEN9. Signed-off-by: Ben Widawsky --- src/

Re: [Mesa-dev] [PATCH] mesa/program: remove dead code

2015-04-11 Thread Matt Turner
On Sat, Apr 11, 2015 at 12:11 PM, Marek Olšák wrote: > From: Marek Olšák > > --- Ugh, these two functions have been dead since 2012 and 2010. :( Reviewed-by: Matt Turner ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedeskto

Re: [Mesa-dev] [PATCH] configure.ac: enable non-gallium assertions for people not using --enable-debug

2015-04-11 Thread Matt Turner
On Sat, Apr 11, 2015 at 12:11 PM, Marek Olšák wrote: > From: Marek Olšák > > --- > configure.ac | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/configure.ac b/configure.ac > index 4ed4b74..113fb49 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -421,7 +421,9 @@

Re: [Mesa-dev] Value Range Propagation in NIR (GSoC)

2015-04-11 Thread Thomas Helland
2015-04-08 18:03 GMT+02:00 Jason Ekstrand : > On Tue, Apr 7, 2015 at 4:52 PM, Connor Abbott wrote: >> Hi Thomas, >> >> Thanks for submitting a proposal! Some comments/answers below. >> >> On Tue, Apr 7, 2015 at 3:34 PM, Thomas Helland >> wrote: >>> Hi, >>> >>> For those that don't know I've submi

[Mesa-dev] [PATCH 3/6] glsl_to_tgsi: don't use a potentially-undefined immediate for ir_query_levels

2015-04-11 Thread Marek Olšák
From: Marek Olšák Cc: 10.4 10.5 --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 8a53d80..00d8785 100644 --- a/src/mesa/state_

[Mesa-dev] [PATCH 1/6] glsl_to_tgsi: cleanup includes

2015-04-11 Thread Marek Olšák
From: Marek Olšák --- src/mesa/state_tracker/st_atom_shader.c| 3 +-- src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 24 src/mesa/state_tracker/st_glsl_to_tgsi.h | 7 --- 3 files changed, 9 insertions(+), 25 deletions(-) diff --git a/src/mesa/state_tracker/st_

[Mesa-dev] [PATCH 2/6] glsl_to_tgsi: fix out-of-bounds constant access and crash for uniforms

2015-04-11 Thread Marek Olšák
From: Marek Olšák This fixes piglit shaders@glsl-fs-uniform-array-loop-unroll with immediate shader compilation - it's a compiler test, so it has never been translated to TGSI before. Cc: 10.4 10.5 --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 11 +++ 1 file changed, 7 insertions(+)

[Mesa-dev] [PATCH 4/6] glsl_to_tgsi: add assertions for detecting out-of-bounds immediates access

2015-04-11 Thread Marek Olšák
From: Marek Olšák --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 6 ++ 1 file changed, 6 insertions(+) diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 00d8785..26d859e 100644 --- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp +++ b

[Mesa-dev] [PATCH 5/6] glsl_to_tgsi: add STATE_FB_WPOS_Y_TRANSFORM at link time

2015-04-11 Thread Marek Olšák
From: Marek Olšák This will allow removing the uniform storage re-association during TGSI generation at draw time. --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 44 -- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/src/mesa/state_tracker/st_glsl_to

[Mesa-dev] Value Range Propagation in NIR (GSoC)

2015-04-11 Thread Thomas Helland
Thanks for the lengthy response :) 8. apr. 2015 01.52 skrev "Connor Abbott" : > > Hi Thomas, > > Thanks for submitting a proposal! Some comments/answers below. > > On Tue, Apr 7, 2015 at 3:34 PM, Thomas Helland > wrote: > > Hi, > > > > For those that don't know I've submitted a proposal for this

[Mesa-dev] [PATCH 6/6] glsl_to_tgsi: only associate the uniform storage once at link time

2015-04-11 Thread Marek Olšák
From: Marek Olšák This hack is no longer needed. (see the previous commit) --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 24 1 file changed, 24 deletions(-) diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 75

[Mesa-dev] [PATCH] mesa/program: remove dead code

2015-04-11 Thread Marek Olšák
From: Marek Olšák --- src/mesa/program/prog_parameter.c | 72 --- src/mesa/program/prog_parameter.h | 9 - 2 files changed, 81 deletions(-) diff --git a/src/mesa/program/prog_parameter.c b/src/mesa/program/prog_parameter.c index cdfe251..53e9813 100644

[Mesa-dev] [PATCH] configure.ac: enable non-gallium assertions for people not using --enable-debug

2015-04-11 Thread Marek Olšák
From: Marek Olšák --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4ed4b74..113fb49 100644 --- a/configure.ac +++ b/configure.ac @@ -421,7 +421,9 @@ if test "x$enable_debug" = xyes; then fi fi else - DEFINE

[Mesa-dev] [PATCH] gallium/radeon: don't crash when getting out-of-bounds TEMP references

2015-04-11 Thread Marek Olšák
From: Marek Olšák --- src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c b/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c index 1690194..333f7ae 100644 --- a/src/gallium/drivers/r

Re: [Mesa-dev] [PATCH] i965: Fix software primitive restart with indirect draws.

2015-04-11 Thread Ben Widawsky
On Sat, Apr 11, 2015 at 09:40:36AM -0700, Matt Turner wrote: > On Sat, Apr 11, 2015 at 2:46 AM, Kenneth Graunke > wrote: > > new_prim was declared as a stack variable within a nested scope; we > > tried to retain a pointer to that data beyond the scope, which is bogus. > > > > GCC with -O1 elimin

Re: [Mesa-dev] [PATCH] i965/skl: Use an exec size of 8 to initialise the message header

2015-04-11 Thread Ben Widawsky
On Fri, Apr 10, 2015 at 07:39:51PM +0100, Neil Roberts wrote: > Commit e93566a15c61c33faa changed the message header code needed to > make Skylake use SIMD4x2 so that it uses a register with width 4 > instead of 8 as the source register in the send message. However it > also changed the width for t

Re: [Mesa-dev] [PATCH 11/12] i965: Create NIR during LinkShader() and ProgramStringNotify().

2015-04-11 Thread Kenneth Graunke
On Wednesday, April 08, 2015 12:25:27 PM Martin Peres wrote: > On 08/04/15 10:06, Kenneth Graunke wrote: > > Previously, we translated into NIR and did all the optimizations and > > lowering as part of running fs_visitor. This meant that we did all of > > that work twice for fragment shaders - onc

Re: [Mesa-dev] [PATCH 0/4] remove unneeded #include of colormac.h

2015-04-11 Thread Matt Turner
On Sat, Apr 11, 2015 at 11:25 AM, Ben Widawsky wrote: > On Fri, 10 Apr 2015 15:49:32 -0700 > Jordan Justen wrote: > >> Sounds reasonable. Assuming you build tested, series >> Reviewed-by: Jordan Justen > > Same > r-b: bwidawsk... I think this is how we wind up with so many typos in the commit l

Re: [Mesa-dev] [PATCH 0/4] remove unneeded #include of colormac.h

2015-04-11 Thread Ben Widawsky
On Fri, 10 Apr 2015 15:49:32 -0700 Jordan Justen wrote: > Sounds reasonable. Assuming you build tested, series > Reviewed-by: Jordan Justen Same r-b: bwidawsk... Though I am not sure I see the utility of 4 patches instead of 1... > > On 2015-04-10 13:45:24, Mark Janes wrote: > > Please pard

Re: [Mesa-dev] [PATCH 0/3] Enable ARB_gpu_shader_fp64 for i965

2015-04-11 Thread Matt Turner
Readding mesa-dev@ to Cc. On Sat, Apr 11, 2015 at 11:06 AM, Darius Goad wrote: > Well, I did make a v2, but all that did was fix a bug. How does this not > come close? Well, for instance the i965 driver supports ~5 generations of hardware, three of them that don't support doubles. There's not a

Re: [Mesa-dev] [PATCH] i965: Don't bother freeing NULL.

2015-04-11 Thread Jason Ekstrand
On Sat, Apr 11, 2015 at 10:23 AM, Matt Turner wrote: > Commit e16c5c90 was replacing 'region' with 'mt', leaving this > nonsensical code. > --- > src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 6 ++ > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/src/mesa/drivers/dri/i965/

Re: [Mesa-dev] [PATCH 0/3] Enable ARB_gpu_shader_fp64 for i965

2015-04-11 Thread Matt Turner
On Sat, Apr 11, 2015 at 10:38 AM, Darius Goad wrote: > This patch set enables ARB_gpu_shader_fp64 for i965. > > Darius Goad (3): > i965/fs: Add basic support for double-precision floating-point types > for Gen7+ > i965: Add support for double-precision floating-point types on Gen8+. > il

[Mesa-dev] [PATCH v2 2/3] i965: Add support for double-precision floating-point types on Gen8+.

2015-04-11 Thread Darius Goad
--- src/mesa/drivers/dri/i965/brw_reg.h | 1 + src/mesa/drivers/dri/i965/brw_shader.cpp | 19 +-- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_reg.h b/src/mesa/drivers/dri/i965/brw_reg.h index 924b059..143a667 100644 --- a/src

[Mesa-dev] [PATCH v2 3/3] ilo: Enable ARB_gpu_shader_fp64

2015-04-11 Thread Darius Goad
--- src/gallium/drivers/ilo/ilo_screen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/ilo/ilo_screen.c b/src/gallium/drivers/ilo/ilo_screen.c index 80ea4c7..e6a8354 100644 --- a/src/gallium/drivers/ilo/ilo_screen.c +++ b/src/gallium/drivers/ilo/ilo_screen.c @@ -147,6

[Mesa-dev] [PATCH v2 1/3] i965/fs: Add basic support for double-precision floating-point types for Gen7+

2015-04-11 Thread Darius Goad
--- src/mesa/drivers/dri/i965/brw_fs.cpp | 2 +- src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 4 ++-- src/mesa/drivers/dri/i965/brw_shader.cpp | 3 ++- src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp | 1 + 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/mesa/

[Mesa-dev] [PATCH 1/3] i965/fs: Add basic support for double-precision floating-point types for Gen7+

2015-04-11 Thread Darius Goad
--- src/mesa/drivers/dri/i965/brw_fs.cpp | 2 +- src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 4 ++-- src/mesa/drivers/dri/i965/brw_shader.cpp | 3 ++- src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp | 1 + 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/mesa/

[Mesa-dev] [PATCH 3/3] ilo: Enable ARB_gpu_shader_fp64

2015-04-11 Thread Darius Goad
--- src/gallium/drivers/ilo/ilo_screen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/ilo/ilo_screen.c b/src/gallium/drivers/ilo/ilo_screen.c index 80ea4c7..4e6988f 100644 --- a/src/gallium/drivers/ilo/ilo_screen.c +++ b/src/gallium/drivers/ilo/ilo_screen.c @@ -147,6

[Mesa-dev] [PATCH 2/3] i965: Add support for double-precision floating-point types on Gen8+.

2015-04-11 Thread Darius Goad
--- src/mesa/drivers/dri/i965/brw_reg.h | 1 + src/mesa/drivers/dri/i965/brw_shader.cpp | 19 +-- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_reg.h b/src/mesa/drivers/dri/i965/brw_reg.h index 924b059..143a667 100644 --- a/src

[Mesa-dev] [PATCH 0/3] Enable ARB_gpu_shader_fp64 for i965

2015-04-11 Thread Darius Goad
This patch set enables ARB_gpu_shader_fp64 for i965. Darius Goad (3): i965/fs: Add basic support for double-precision floating-point types for Gen7+ i965: Add support for double-precision floating-point types on Gen8+. ilo: Enable ARB_gpu_shader_fp64 src/gallium/drivers/ilo/ilo_screen.

[Mesa-dev] [PATCH] i965: Don't bother freeing NULL.

2015-04-11 Thread Matt Turner
Commit e16c5c90 was replacing 'region' with 'mt', leaving this nonsensical code. --- src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.

[Mesa-dev] [PATCH] swrast: Mark MAX_GLUINT literal with u suffix.

2015-04-11 Thread Matt Turner
Coverity is confused by the "float < int / 2" expression and suggests casting MAX_GLUINT to unsigned, which I believe it was supposed to have been already. --- src/mesa/swrast/s_tritemp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/swrast/s_tritemp.h b/src/mesa/swr

[Mesa-dev] [PATCH] glsl: extend GLSLSkipStrictMaxUniformLimitCheck to uniform block size

2015-04-11 Thread Marcin Ślusarz
ARB_uniform_buffer_object spec says: "The total amount of buffer object storage available for any given uniform block is subject to an implementation-dependent limit; the maximum amount of available space, in basic machine units, can be queried by calling GetIntegerv with the constant MAX_UNIFORM_B

Re: [Mesa-dev] [PATCH] i965: Fix software primitive restart with indirect draws.

2015-04-11 Thread Matt Turner
On Sat, Apr 11, 2015 at 2:46 AM, Kenneth Graunke wrote: > new_prim was declared as a stack variable within a nested scope; we > tried to retain a pointer to that data beyond the scope, which is bogus. > > GCC with -O1 eliminated most of the code that set new_prim's fields. > > Move the declaration

[Mesa-dev] [PATCH] i965: Fix software primitive restart with indirect draws.

2015-04-11 Thread Kenneth Graunke
new_prim was declared as a stack variable within a nested scope; we tried to retain a pointer to that data beyond the scope, which is bogus. GCC with -O1 eliminated most of the code that set new_prim's fields. Move the declaration to fix the bug. Bugzilla: https://bugs.freedesktop.org/show_bug.c

Re: [Mesa-dev] [PATCH 2/3] i965/fs: Only emit FS_OPCODE_PLACEHOLDER_HALT if there are discards

2015-04-11 Thread Kenneth Graunke
On Friday, April 10, 2015 10:49:51 PM Ben Widawsky wrote: > On Fri, Apr 10, 2015 at 07:50:19PM -0700, Kenneth Graunke wrote: > > On Friday, April 10, 2015 12:52:03 PM Ben Widawsky wrote: > > > Based originally on a patch from Ken in May 2014 of the same title. Things > > > changed enough that I did

Re: [Mesa-dev] [PATCH 1/2] i965/skl: Enable floating blend optimization

2015-04-11 Thread Kenneth Graunke
On Friday, April 10, 2015 03:52:53 PM Ben Widawsky wrote: > This optimization is disabled by default, and it is recommended to be enabled. > The docs do not provide much info. > > Cc: Ian Romanick > Cc: "Neil S. Roberts" > Signed-off-by: Ben Widawsky > --- > > Notes: > I am enabling this o