gallium/u_gen_mipmap: rewrite using pipe->blit (v2)
authorMarek Olšák <marek.olsak@amd.com>
Sun, 16 Mar 2014 02:45:27 +0000 (03:45 +0100)
committerMarek Olšák <marek.olsak@amd.com>
Thu, 10 Apr 2014 18:50:16 +0000 (20:50 +0200)
commit38858207a11819a3c68f14b589c0779fb82152ff
treeb67aba5d2ccef8c3173d81b88ef04531c54ba71d
parent26c41398cc47c0f72259a34406831443238b7ba9
gallium/u_gen_mipmap: rewrite using pipe->blit (v2)

This replaces u_gen_mipmap with an extremely simple implementation based
on pipe->blit. st/mesa is also cleaned up.

Pros:
- less code
- correct mipmap generation for NPOT 3D textures (u_blitter uses a better
  formula)
- queries are not affected by mipmap generation if drivers disable them

v2: add "first_layer", "last_layer" parameters, drop "face"
v2.1: add format
v2.2: document the format parameter
src/gallium/auxiliary/util/u_gen_mipmap.c
src/gallium/auxiliary/util/u_gen_mipmap.h
src/mesa/state_tracker/st_context.c
src/mesa/state_tracker/st_context.h
src/mesa/state_tracker/st_gen_mipmap.c
src/mesa/state_tracker/st_gen_mipmap.h