pvr: use pvr_arch aliases

These were just missed case when switching to the aliases earlier. This
is just a consistency issue, it doesn't affect correctness.

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 11:45:19 +01:00 committed by Marge Bot
parent 9912883045
commit 2cc831d75a
6 changed files with 6 additions and 6 deletions

View file

@ -270,7 +270,7 @@ VkResult PVR_PER_ARCH(csb_copy)(struct pvr_csb *csb_dst,
assert(!"CSB source buffer too large to do a full copy");
}
destination = PVR_PER_ARCH(csb_alloc_dwords)(csb_dst, size);
destination = pvr_csb_alloc_dwords(csb_dst, size);
if (!destination) {
assert(csb_dst->status != VK_SUCCESS);
return csb_dst->status;

View file

@ -342,7 +342,7 @@ bool PVR_PER_ARCH(format_is_pbe_downscalable)(
return false;
}
switch (PVR_PER_ARCH(get_pbe_packmode)(vk_format)) {
switch (pvr_get_pbe_packmode(vk_format)) {
default:
return true;
case ROGUE_PBESTATE_PACKMODE_F16:

View file

@ -2720,7 +2720,7 @@ end_create_renderpass_hwsetup:
pvr_free_render(ctx);
if (hw_setup) {
PVR_PER_ARCH(destroy_renderpass_hwsetup)(alloc, hw_setup);
pvr_destroy_renderpass_hwsetup(alloc, hw_setup);
hw_setup = NULL;
}
}

View file

@ -1075,7 +1075,7 @@ void PVR_PER_ARCH(DestroyRenderPass)(VkDevice _device,
allocator,
pass,
pass->hw_setup->render_count);
PVR_PER_ARCH(destroy_renderpass_hwsetup)(allocator, pass->hw_setup);
pvr_destroy_renderpass_hwsetup(allocator, pass->hw_setup);
vk_object_base_finish(&pass->base);
vk_free2(&device->vk.alloc, pAllocator, pass);
}

View file

@ -170,7 +170,7 @@ VkResult PVR_PER_ARCH(queues_create)(struct pvr_device *device,
return VK_SUCCESS;
err_queues_finish:
PVR_PER_ARCH(queues_destroy)(device);
pvr_queues_destroy(device);
return result;
}

View file

@ -726,7 +726,7 @@ VkResult pvr_GetPhysicalDeviceImageFormatProperties2(
break;
case VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO:
/* Nothing to do here, it's handled in
* PVR_PER_ARCH(get_image_format_properties)
* pvr_get_image_format_properties)
*/
break;
default: