Re: [Mesa-dev] [PATCH] glsl: destroy function and subroutine hash tables

2017-05-07 Thread Timothy Arceri
Pushed, thanks! On 03/05/17 04:06, Grazvydas Ignotas wrote: Just like other type hash tables are destroyed in _mesa_glsl_release_types(), also destroy the ones for function and subroutine types. Signed-off-by: Grazvydas Ignotas --- src/compiler/glsl_types.cpp | 10 ++ 1 file changed

[Mesa-dev] [PATCH] glsl: destroy function and subroutine hash tables

2017-05-02 Thread Grazvydas Ignotas
Just like other type hash tables are destroyed in _mesa_glsl_release_types(), also destroy the ones for function and subroutine types. Signed-off-by: Grazvydas Ignotas --- src/compiler/glsl_types.cpp | 10 ++ 1 file changed, 10 insertions(+) diff --git a/src/compiler/glsl_types.cpp b/sr