Re: [Mesa-dev] [PATCH] util: move string_to_uint_map to glsl

2017-08-29 Thread Emil Velikov
On 29 August 2017 at 11:41, Mike Lothian wrote: > Feel free to add my tested by for this > Great, thanks. Pushed to master. Will scoop for 17.2 in a moment. -Emil ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mai

Re: [Mesa-dev] [PATCH] util: move string_to_uint_map to glsl

2017-08-29 Thread Mike Lothian
Feel free to add my tested by for this Thanks for the fix On Sat, 26 Aug 2017 at 17:35 Jason Ekstrand wrote: > Reviewed-by: Jason Ekstrand > > On Fri, Aug 25, 2017 at 7:10 PM, Jason Ekstrand > wrote: > >> Ack. Not a review though. >> >> >> >> On August 25, 2017 6:38:46 PM Emil Velikov >> wr

Re: [Mesa-dev] [PATCH] util: move string_to_uint_map to glsl

2017-08-26 Thread Jason Ekstrand
Reviewed-by: Jason Ekstrand On Fri, Aug 25, 2017 at 7:10 PM, Jason Ekstrand wrote: > Ack. Not a review though. > > > > On August 25, 2017 6:38:46 PM Emil Velikov > wrote: > > From: Emil Velikov >> >> The functionality is used by glsl and mesa. With the latter already >> depending on the form

Re: [Mesa-dev] [PATCH] util: move string_to_uint_map to glsl

2017-08-25 Thread Jason Ekstrand
Ack. Not a review though. On August 25, 2017 6:38:46 PM Emil Velikov wrote: From: Emil Velikov The functionality is used by glsl and mesa. With the latter already depending on the former. With this in place the src/util/ static library libmesautil.la no longer has a C++ dependency. Thus o

[Mesa-dev] [PATCH] util: move string_to_uint_map to glsl

2017-08-25 Thread Emil Velikov
From: Emil Velikov The functionality is used by glsl and mesa. With the latter already depending on the former. With this in place the src/util/ static library libmesautil.la no longer has a C++ dependency. Thus objects which use it (like libEGL) don't need the C++ link. Cc: Jason Ekstrand Sug