mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 18:38:11 +02:00
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:
parent
6696f0a1f4
commit
8f23859c84
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue