mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
radv: rename radv_image_is_tc_compat_htile()
... to radv_use_tc_compat_htile_for_image(). This function name makes more sense to me because we want to know if and only if TC-compat HTILE should be used. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
2692736cee
commit
fab5fe4284
1 changed files with 3 additions and 3 deletions
|
|
@ -65,8 +65,8 @@ radv_choose_tiling(struct radv_device *device,
|
|||
}
|
||||
|
||||
static bool
|
||||
radv_image_is_tc_compat_htile(struct radv_device *device,
|
||||
const VkImageCreateInfo *pCreateInfo)
|
||||
radv_use_tc_compat_htile_for_image(struct radv_device *device,
|
||||
const VkImageCreateInfo *pCreateInfo)
|
||||
{
|
||||
/* TC-compat HTILE is only available for GFX8+. */
|
||||
if (device->physical_device->rad_info.chip_class < VI)
|
||||
|
|
@ -149,7 +149,7 @@ radv_init_surface(struct radv_device *device,
|
|||
|
||||
if (is_depth) {
|
||||
surface->flags |= RADEON_SURF_ZBUFFER;
|
||||
if (radv_image_is_tc_compat_htile(device, pCreateInfo))
|
||||
if (radv_use_tc_compat_htile_for_image(device, pCreateInfo))
|
||||
surface->flags |= RADEON_SURF_TC_COMPATIBLE_HTILE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue