Home
last modified time | relevance | path

Searched refs:fCommandPool (Results 1 – 3 of 3) sorted by relevance

/external/skia/tools/gpu/vk/
DVkTestContext.cpp35 GR_VK_CALL_ERRCHECK(fVk, CreateCommandPool(fDevice, &createInfo, nullptr, &fCommandPool)); in VkFenceSync()
41 allocateInfo.commandPool = fCommandPool; in VkFenceSync()
57 GR_VK_CALL(fVk, FreeCommandBuffers(fDevice, fCommandPool, 1, &fCommandBuffer)); in ~VkFenceSync()
58 GR_VK_CALL(fVk, DestroyCommandPool(fDevice, fCommandPool, nullptr)); in ~VkFenceSync()
100 VkCommandPool fCommandPool; member in __anon41ebc42a0111::VkFenceSync
/external/skia/tools/viewer/sk_app/
DVulkanWindowContext.cpp39 , fCommandPool(VK_NULL_HANDLE) in VulkanWindowContext()
288 if (VK_NULL_HANDLE == fCommandPool) { in createBuffers()
297 nullptr, &fCommandPool)); in createBuffers()
310 commandBuffersInfo.commandPool = fCommandPool; in createBuffers()
361 FreeCommandBuffers(fBackendContext->fDevice, fCommandPool, 2, in destroyBuffers()
396 if (VK_NULL_HANDLE != fCommandPool) { in destroyContext()
398 fCommandPool, nullptr)); in destroyContext()
399 fCommandPool = VK_NULL_HANDLE; in destroyContext()
DVulkanWindowContext.h101 VkCommandPool fCommandPool; variable