Re: [Mesa-dev] [PATCH 29/29] vbo: Use a bitmask to track the active arrays in vbo_save*.

2016-06-22 Thread Mathias Fröhlich
On Monday, June 20, 2016 11:42:19 Mark Janes wrote: > Mathias Fröhlich writes: > > > On Monday, June 20, 2016 10:33:42 Mark Janes wrote: > >> mathias.froehl...@gmx.net writes: > >> > >> > From: Mathias Fröhlich > >> > > >> > The use of a bitmask makes functions iterating only active > >> > attr

Re: [Mesa-dev] [PATCH 29/29] vbo: Use a bitmask to track the active arrays in vbo_save*.

2016-06-20 Thread Mark Janes
Mathias Fröhlich writes: > On Monday, June 20, 2016 10:33:42 Mark Janes wrote: >> mathias.froehl...@gmx.net writes: >> >> > From: Mathias Fröhlich >> > >> > The use of a bitmask makes functions iterating only active >> > attributes less visible in profiles. >> > >> > Signed-off-by: Mathias Fröh

Re: [Mesa-dev] [PATCH 29/29] vbo: Use a bitmask to track the active arrays in vbo_save*.

2016-06-20 Thread Mathias Fröhlich
On Monday, June 20, 2016 10:33:42 Mark Janes wrote: > mathias.froehl...@gmx.net writes: > > > From: Mathias Fröhlich > > > > The use of a bitmask makes functions iterating only active > > attributes less visible in profiles. > > > > Signed-off-by: Mathias Fröhlich > > --- > > src/mesa/vbo/vbo_s

Re: [Mesa-dev] [PATCH 29/29] vbo: Use a bitmask to track the active arrays in vbo_save*.

2016-06-20 Thread Mark Janes
mathias.froehl...@gmx.net writes: > From: Mathias Fröhlich > > The use of a bitmask makes functions iterating only active > attributes less visible in profiles. > > Signed-off-by: Mathias Fröhlich > --- > src/mesa/vbo/vbo_save.h | 2 ++ > src/mesa/vbo/vbo_save_api.c | 70 > +

[Mesa-dev] [PATCH 29/29] vbo: Use a bitmask to track the active arrays in vbo_save*.

2016-06-13 Thread Mathias . Froehlich
From: Mathias Fröhlich The use of a bitmask makes functions iterating only active attributes less visible in profiles. v2: Use _mesa_bit_scan{,64} instead of open coding. v3: Use u_bit_scan{,64} instead of _mesa_bit_scan{,64}. Reviewed-by: Brian Paul Signed-off-by: Mathias Fröhlich --- src/m

[Mesa-dev] [PATCH 29/29] vbo: Use a bitmask to track the active arrays in vbo_save*.

2016-05-23 Thread Mathias . Froehlich
From: Mathias Fröhlich The use of a bitmask makes functions iterating only active attributes less visible in profiles. Signed-off-by: Mathias Fröhlich --- src/mesa/vbo/vbo_save.h | 2 ++ src/mesa/vbo/vbo_save_api.c | 70 ++-- src/mesa/vbo/vbo_save