pvr: do not use alias in definition

This is not the norm... yet. A later patch will go in the oposite
direction, but it seems better to make things consistent first, in case
we decide to not stick with the later patch.

Reviewed-by: Ashish Chauhan <ashish.chauhan@imgtec.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39035>
This commit is contained in:
Erik Faye-Lund 2025-12-19 12:35:24 +01:00 committed by Marge Bot
parent 6696f0a1f4
commit 8f23859c84

View file

@ -313,7 +313,7 @@ uint32_t PVR_PER_ARCH(get_tex_format_aspect)(VkFormat vk_format,
return ROGUE_TEXSTATE_FORMAT_INVALID;
}
uint32_t pvr_get_pbe_packmode(VkFormat vk_format)
uint32_t PVR_PER_ARCH(get_pbe_packmode)(VkFormat vk_format)
{
if (vk_format_is_block_compressed(vk_format))
return ROGUE_PBESTATE_PACKMODE_INVALID;
@ -321,7 +321,7 @@ uint32_t pvr_get_pbe_packmode(VkFormat vk_format)
return pvr_get_pbe_format(vk_format)->packmode;
}
uint32_t pvr_get_pbe_accum_format(VkFormat vk_format)
uint32_t PVR_PER_ARCH(get_pbe_accum_format)(VkFormat vk_format)
{
if (vk_format_is_block_compressed(vk_format))
return PVR_PBE_ACCUM_FORMAT_INVALID;