mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
lavapipe: use consistent semaphore variable naming
Reviewed-by: Dave Airlie <airlied@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12071>
This commit is contained in:
parent
032d4a0e7d
commit
326253786e
1 changed files with 3 additions and 3 deletions
|
|
@ -1920,12 +1920,12 @@ VKAPI_ATTR void VKAPI_CALL lvp_DestroySemaphore(
|
|||
const VkAllocationCallbacks* pAllocator)
|
||||
{
|
||||
LVP_FROM_HANDLE(lvp_device, device, _device);
|
||||
LVP_FROM_HANDLE(lvp_semaphore, semaphore, _semaphore);
|
||||
LVP_FROM_HANDLE(lvp_semaphore, sema, _semaphore);
|
||||
|
||||
if (!_semaphore)
|
||||
return;
|
||||
vk_object_base_finish(&semaphore->base);
|
||||
vk_free2(&device->vk.alloc, pAllocator, semaphore);
|
||||
vk_object_base_finish(&sema->base);
|
||||
vk_free2(&device->vk.alloc, pAllocator, sema);
|
||||
}
|
||||
|
||||
VKAPI_ATTR VkResult VKAPI_CALL lvp_CreateEvent(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue