[Mesa-dev] [PATCH v2 4/5] util: Add u_bit_count64 and u_next_power_of_two

2018-07-18 Thread Rhys Perry
Signed-off-by: Rhys Perry --- src/util/bitscan.h | 28 1 file changed, 28 insertions(+) diff --git a/src/util/bitscan.h b/src/util/bitscan.h index dc89ac93f2..cae61d3f71 100644 --- a/src/util/bitscan.h +++ b/src/util/bitscan.h @@ -286,6 +286,34 @@ u_bit_consecutive64

Re: [Mesa-dev] [PATCH v2 4/5] util: Add u_bit_count64 and u_next_power_of_two

2018-07-18 Thread Marek Olšák
On Wed, Jul 18, 2018 at 1:05 PM, Rhys Perry wrote: > Signed-off-by: Rhys Perry > --- > src/util/bitscan.h | 28 > 1 file changed, 28 insertions(+) > > diff --git a/src/util/bitscan.h b/src/util/bitscan.h > index dc89ac93f2..cae61d3f71 100644 > --- a/src/util/bitscan.