Re: [Mesa-dev] [PATCH] glsl: replace old hash table with new and faster one

2015-08-02 Thread Alejandro Seguí Díaz
> >> On Sun, Aug 2, 2015 at 8:05 PM, Chris Forbes wrote: >> > Some perf numbers would be nice. How much is this winning? >> > >> > - Chris >> > >> > On Mon, Aug 3, 2015 at 11:18 AM, Timothy Arceri >> wrote: >> >> On Sun,

[Mesa-dev] [PATCH] glsl: replace old hash table with new and faster one

2015-08-02 Thread Alejandro Seguí
The util/hash_table was intended to be a fast hash table replacement for the program/hash_table see 35fd61bd99c1 and 72e55bb6888ff. --- src/glsl/ir_print_visitor.cpp | 18 +++--- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/glsl/ir_print_visitor.cpp b/src/glsl/ir_

[Mesa-dev] [PATCH] glsl: replace old hash table with new and faster one

2015-08-02 Thread Alejandro Seguí
--- src/glsl/ir_print_visitor.cpp | 19 --- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/glsl/ir_print_visitor.cpp b/src/glsl/ir_print_visitor.cpp index 78475f3..641a996 100644 --- a/src/glsl/ir_print_visitor.cpp +++ b/src/glsl/ir_print_visitor.cpp @@ -25,7 +2