r600g,radeonsi: switch all occurences of array_size to util_max_layer
authorMarek Olšák <marek.olsak@amd.com>
Sat, 26 Jul 2014 15:15:39 +0000 (17:15 +0200)
committerMarek Olšák <marek.olsak@amd.com>
Mon, 28 Jul 2014 21:57:08 +0000 (23:57 +0200)
commita9528cef6b6ff4875c9d125a60b7309a2ad24766
treed77513f18015b67ea4dcf3b6b8c119385aa9955f
parent71ce92200e0314a0878088dec8c0c2a0270bc4dc
r600g,radeonsi: switch all occurences of array_size to util_max_layer

This fixes 3D texture support in all these cases, because array_size is 1
with 3D textures and depth0 actually contains the "array size".
util_max_layer is universal and returns the last layer index for any texture
target.

A lot of the cases below can't actually be hit with 3D textures, but let's
be consistent.

This fixes a failure in:
    piglit layered-rendering/clear-color-all-types 3d single_level
for r600g and radeonsi, which was caused by an incorrect CMASK size
calculation.

Cc: mesa-stable@lists.freedesktop.org
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
src/gallium/drivers/r600/r600_blit.c
src/gallium/drivers/radeon/r600_texture.c
src/gallium/drivers/radeonsi/si_blit.c