/external/skia/src/gpu/vk/ |
D | GrVkCommandPool.cpp | 29 : fCommandPool(commandPool) { in GrVkCommandPool() 55 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), ResetCommandPool(gpu->device(), fCommandPool, 0)); in reset() 80 if (fCommandPool != VK_NULL_HANDLE) { in freeGPUData() 82 DestroyCommandPool(gpu->device(), fCommandPool, nullptr)); in freeGPUData()
|
D | GrVkCommandPool.h | 25 return fCommandPool; in vkCommandPool() 47 SkDebugf("GrVkCommandPool: %p (%d refs)\n", fCommandPool, this->getRefCnt()); in dumpInfo() 62 VkCommandPool fCommandPool; variable
|
/external/skqp/src/gpu/vk/ |
D | GrVkCommandPool.cpp | 29 : fCommandPool(commandPool) { in GrVkCommandPool() 55 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), ResetCommandPool(gpu->device(), fCommandPool, 0)); in reset() 80 if (fCommandPool != VK_NULL_HANDLE) { in freeGPUData() 82 DestroyCommandPool(gpu->device(), fCommandPool, nullptr)); in freeGPUData()
|
D | GrVkCommandPool.h | 25 return fCommandPool; in vkCommandPool() 47 SkDebugf("GrVkCommandPool: %p (%d refs)\n", fCommandPool, this->getRefCnt()); in dumpInfo() 62 VkCommandPool fCommandPool; variable
|
/external/skqp/tools/gpu/mtl/ |
D | MtlTestContext.mm | 37 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/gpu/mtl/ |
D | MtlTestContext.mm | 41 GR_VK_CALL_ERRCHECK(fVk, CreateCommandPool(fDevice, &createInfo, nullptr, &fCommandPool)); 47 allocateInfo.commandPool = fCommandPool; 63 GR_VK_CALL(fVk, FreeCommandBuffers(fDevice, fCommandPool, 1, &fCommandBuffer)); 64 GR_VK_CALL(fVk, DestroyCommandPool(fDevice, fCommandPool, nullptr)); 106 VkCommandPool fCommandPool;
|
/external/skia/tools/gpu/vk/ |
D | VkTestContext.cpp | 51 result = fCreateCommandPool(fDevice, &createInfo, nullptr, &fCommandPool); in VkFenceSync() 58 allocateInfo.commandPool = fCommandPool; in VkFenceSync() 78 fFreeCommandBuffers(fDevice, fCommandPool, 1, &fCommandBuffer); in ~VkFenceSync() 79 fDestroyCommandPool(fDevice, fCommandPool, nullptr); in ~VkFenceSync() 126 VkCommandPool fCommandPool; member in __anon41ebc42a0111::VkFenceSync
|
/external/skqp/tools/gpu/vk/ |
D | VkTestContext.cpp | 51 result = fCreateCommandPool(fDevice, &createInfo, nullptr, &fCommandPool); in VkFenceSync() 58 allocateInfo.commandPool = fCommandPool; in VkFenceSync() 78 fFreeCommandBuffers(fDevice, fCommandPool, 1, &fCommandBuffer); in ~VkFenceSync() 79 fDestroyCommandPool(fDevice, fCommandPool, nullptr); in ~VkFenceSync() 126 VkCommandPool fCommandPool; member in __anonbc379a610111::VkFenceSync
|
/external/skqp/tools/sk_app/ |
D | VulkanWindowContext.cpp | 44 , fCommandPool(VK_NULL_HANDLE) in VulkanWindowContext() 351 if (VK_NULL_HANDLE == fCommandPool) { in createBuffers() 360 nullptr, &fCommandPool)); in createBuffers() 373 commandBuffersInfo.commandPool = fCommandPool; in createBuffers() 424 FreeCommandBuffers(fDevice, fCommandPool, 2, in destroyBuffers() 456 if (VK_NULL_HANDLE != fCommandPool) { in destroyContext() 457 GR_VK_CALL(fInterface, DestroyCommandPool(fDevice, fCommandPool, nullptr)); in destroyContext() 458 fCommandPool = VK_NULL_HANDLE; in destroyContext()
|
D | VulkanWindowContext.h | 116 VkCommandPool fCommandPool; variable
|