radv: avoid casting warnings on 32bit

Use the same helpers as for other handle<->pointer conversions.

Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
Grazvydas Ignotas 2017-03-05 23:04:50 +02:00 committed by Bas Nieuwenhuizen
parent fb7e4e16e7
commit 5458b02305
2 changed files with 5 additions and 3 deletions

View file

@ -2029,7 +2029,7 @@ VkResult radv_CreateSemaphore(
if (!sem)
return VK_ERROR_OUT_OF_HOST_MEMORY;
*pSemaphore = (VkSemaphore)sem;
*pSemaphore = radeon_winsys_sem_to_handle(sem);
return VK_SUCCESS;
}
@ -2039,11 +2039,10 @@ void radv_DestroySemaphore(
const VkAllocationCallbacks* pAllocator)
{
RADV_FROM_HANDLE(radv_device, device, _device);
struct radeon_winsys_sem *sem;
RADV_FROM_HANDLE(radeon_winsys_sem, sem, _semaphore);
if (!_semaphore)
return;
sem = (struct radeon_winsys_sem *)_semaphore;
device->ws->destroy_sem(sem);
}

View file

@ -1316,6 +1316,8 @@ struct radv_fence {
bool signalled;
};
struct radeon_winsys_sem;
#define RADV_DEFINE_HANDLE_CASTS(__radv_type, __VkType) \
\
static inline struct __radv_type * \
@ -1372,5 +1374,6 @@ RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_query_pool, VkQueryPool)
RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_render_pass, VkRenderPass)
RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler, VkSampler)
RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_shader_module, VkShaderModule)
RADV_DEFINE_NONDISP_HANDLE_CASTS(radeon_winsys_sem, VkSemaphore)
#endif /* RADV_PRIVATE_H */