radv: check if addrlib enabled HTILE in radv_image_can_enable_htile()

When hile_size is 0, we can't enable HTILE. This doesn't change
anything, except not calling radv_image_alloc_htile().

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
Samuel Pitoiset 2018-12-12 14:15:52 +01:00
parent d8325f1f07
commit eb0034fe28

View file

@ -932,7 +932,8 @@ radv_image_can_enable_fmask(struct radv_image *image)
static inline bool
radv_image_can_enable_htile(struct radv_image *image)
{
return image->info.levels == 1 &&
return radv_image_has_htile(image) &&
image->info.levels == 1 &&
vk_format_is_depth(image->vk_format) &&
image->info.width * image->info.height >= 8 * 8;
}