mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 06:30:10 +01:00
radv: Make the sem_info allocate/free functions static.
They are only used in 1 file. Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
70f9e2589e
commit
729f7373de
2 changed files with 9 additions and 15 deletions
|
|
@ -2349,7 +2349,8 @@ static VkResult radv_alloc_sem_counts(struct radv_winsys_sem_counts *counts,
|
|||
return VK_SUCCESS;
|
||||
}
|
||||
|
||||
void radv_free_sem_info(struct radv_winsys_sem_info *sem_info)
|
||||
static void
|
||||
radv_free_sem_info(struct radv_winsys_sem_info *sem_info)
|
||||
{
|
||||
free(sem_info->wait.syncobj);
|
||||
free(sem_info->wait.sem);
|
||||
|
|
@ -2372,12 +2373,13 @@ static void radv_free_temp_syncobjs(struct radv_device *device,
|
|||
}
|
||||
}
|
||||
|
||||
VkResult radv_alloc_sem_info(struct radv_winsys_sem_info *sem_info,
|
||||
int num_wait_sems,
|
||||
const VkSemaphore *wait_sems,
|
||||
int num_signal_sems,
|
||||
const VkSemaphore *signal_sems,
|
||||
VkFence fence)
|
||||
static VkResult
|
||||
radv_alloc_sem_info(struct radv_winsys_sem_info *sem_info,
|
||||
int num_wait_sems,
|
||||
const VkSemaphore *wait_sems,
|
||||
int num_signal_sems,
|
||||
const VkSemaphore *signal_sems,
|
||||
VkFence fence)
|
||||
{
|
||||
VkResult ret;
|
||||
memset(sem_info, 0, sizeof(*sem_info));
|
||||
|
|
|
|||
|
|
@ -1744,14 +1744,6 @@ struct radv_semaphore {
|
|||
uint32_t temp_syncobj;
|
||||
};
|
||||
|
||||
VkResult radv_alloc_sem_info(struct radv_winsys_sem_info *sem_info,
|
||||
int num_wait_sems,
|
||||
const VkSemaphore *wait_sems,
|
||||
int num_signal_sems,
|
||||
const VkSemaphore *signal_sems,
|
||||
VkFence fence);
|
||||
void radv_free_sem_info(struct radv_winsys_sem_info *sem_info);
|
||||
|
||||
void radv_set_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
|
||||
VkPipelineBindPoint bind_point,
|
||||
struct radv_descriptor_set *set,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue