Home
last modified time | relevance | path

Searched refs:fCommandPool (Results 1 – 4 of 4) 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 __anon6734a6a90111::VkFenceSync
/external/skia/tools/gpu/mtl/
DMtlTestContext.mm37 GR_VK_CALL_ERRCHECK(fVk, CreateCommandPool(fDevice, &createInfo, nullptr, &fCommandPool));
43 allocateInfo.commandPool = fCommandPool;
59 GR_VK_CALL(fVk, FreeCommandBuffers(fDevice, fCommandPool, 1, &fCommandBuffer));
60 GR_VK_CALL(fVk, DestroyCommandPool(fDevice, fCommandPool, nullptr));
102 VkCommandPool fCommandPool;
/external/skia/tools/viewer/sk_app/
DVulkanWindowContext.cpp41 , fCommandPool(VK_NULL_HANDLE) in VulkanWindowContext()
291 if (VK_NULL_HANDLE == fCommandPool) { in createBuffers()
300 nullptr, &fCommandPool)); in createBuffers()
313 commandBuffersInfo.commandPool = fCommandPool; in createBuffers()
364 FreeCommandBuffers(fBackendContext->fDevice, fCommandPool, 2, in destroyBuffers()
399 if (VK_NULL_HANDLE != fCommandPool) { in destroyContext()
401 fCommandPool, nullptr)); in destroyContext()
402 fCommandPool = VK_NULL_HANDLE; in destroyContext()
DVulkanWindowContext.h108 VkCommandPool fCommandPool; variable