Home
last modified time | relevance | path

Searched refs:ResetFences (Results 1 – 13 of 13) sorted by relevance

/external/vulkan-validation-layers/include/vulkan/
Dvk_layer.h61 PFN_vkResetFences ResetFences; member
/external/skia/tools/viewer/sk_app/
DVulkanWindowContext.cpp441 ResetFences(fBackendContext->fDevice, 2, backbuffer->fUsageFences)); in getBackbufferSurface()
460 ResetFences(fBackendContext->fDevice, 2, backbuffer->fUsageFences)); in getBackbufferSurface()
/external/vulkan-validation-layers/loader/
Dtable_ops.h83 table->ResetFences = (PFN_vkResetFences)gpa(dev, "vkResetFences"); in loader_init_device_dispatch_table()
343 return (void *)table->ResetFences; in loader_lookup_device_dispatch_table()
Dtrampoline.c1171 return disp->ResetFences(device, fenceCount, pFences);
/external/skia/src/gpu/vk/
DGrVkInterface.cpp89 ACQUIRE_PROC(ResetFences, VK_NULL_HANDLE, device); in GrVkInterface()
DGrVkCommandBuffer.cpp457 GR_VK_CALL(gpu->vkInterface(), ResetFences(gpu->device(), 1, &fSubmitFence)); in submitToQueue()
/external/vulkan-validation-layers/demos/smoke/
DShell.cpp503 vk::assert_success(vk::ResetFences(ctx_.dev, 1, &buf.present_fence)); in acquire_back_buffer()
DSmoke.cpp770 vk::assert_success(vk::ResetFences(dev_, 1, &data.fence)); in on_frame()
/external/vulkan-validation-layers/layers/
Dvk_validation_layer_details.md103 …of this check to be tested, 1 each in ValidateFenceForSubmit(), DestroyFence(), and ResetFences() |
176 …es that: The fence is not submitted in an already signaled state, that ResetFences is not called w…
Dobject_tracker.cpp835 VKAPI_ATTR VkResult VKAPI_CALL ResetFences(VkDevice device, uint32_t fenceCount, const VkFence *pFe… in ResetFences() function
850 …VkResult result = get_dispatch_table(ot_device_table_map, device)->ResetFences(device, fenceCount,… in ResetFences()
3808 return (PFN_vkVoidFunction)ResetFences; in InterceptCoreDeviceCommand()
Dparameter_validation.cpp2128 VKAPI_ATTR VkResult VKAPI_CALL ResetFences(VkDevice device, uint32_t fenceCount, const VkFence *pFe… in ResetFences() function
2137 …result = get_dispatch_table(pc_device_table_map, device)->ResetFences(device, fenceCount, pFences); in ResetFences()
5311 {"vkResetFences", reinterpret_cast<PFN_vkVoidFunction>(ResetFences)}, in intercept_core_device_command()
Dcore_validation.cpp6281 VKAPI_ATTR VkResult VKAPI_CALL ResetFences(VkDevice device, uint32_t fenceCount, const VkFence *pFe… in ResetFences() function
6298 VkResult result = dev_data->dispatch_table.ResetFences(device, fenceCount, pFences); in ResetFences()
11943 {"vkResetFences", reinterpret_cast<PFN_vkVoidFunction>(ResetFences)}, in intercept_core_device_command()
/external/vulkan-validation-layers/tests/layers/
Dwrap_objects.cpp348 VkResult result = device_dispatch_table(device)->ResetFences(device, fenceCount, pFences); in vkResetFences()