i965: Drop unused return value from intel_finalize_mipmap_tree().
authorKenneth Graunke <kenneth@whitecape.org>
Sun, 19 Jun 2016 06:40:21 +0000 (23:40 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Fri, 24 Jun 2016 22:03:44 +0000 (15:03 -0700)
commit3e258f7e31ab38edd6dbd07a4153c0cc6bce695c
tree84710f3eb007a8a54f3552a7d4b1713d7fe5c57a
parent8ee23d6866b9325450d787e5d55a367423ae4316
i965: Drop unused return value from intel_finalize_mipmap_tree().

The old return type of GLuint was wonky - it should have been bool.
But nothing actually uses the return value anyway, so we can just drop
that and make it a void function.

In theory, it might make sense to ask whether the texture validated
successfully, but just checking intel_obj->mt != NULL works for that.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/drivers/dri/i965/intel_tex.h
src/mesa/drivers/dri/i965/intel_tex_validate.c