Lines Matching refs:local_pFences
1534 VkFence *local_pFences = NULL; in DispatchResetFences() local
1537 local_pFences = new VkFence[fenceCount]; in DispatchResetFences()
1539 local_pFences[index0] = layer_data->Unwrap(pFences[index0]); in DispatchResetFences()
1543 …= layer_data->device_dispatch_table.ResetFences(device, fenceCount, (const VkFence*)local_pFences); in DispatchResetFences()
1544 if (local_pFences) in DispatchResetFences()
1545 delete[] local_pFences; in DispatchResetFences()
1572 VkFence *local_pFences = NULL; in DispatchWaitForFences() local
1575 local_pFences = new VkFence[fenceCount]; in DispatchWaitForFences()
1577 local_pFences[index0] = layer_data->Unwrap(pFences[index0]); in DispatchWaitForFences()
1581 …vice_dispatch_table.WaitForFences(device, fenceCount, (const VkFence*)local_pFences, waitAll, time… in DispatchWaitForFences()
1582 if (local_pFences) in DispatchWaitForFences()
1583 delete[] local_pFences; in DispatchWaitForFences()