HomeSort by relevance Sort by last modified time
    Searched refs:fCommandPool (Results 1 - 10 of 10) sorted by null

  /external/skia/src/gpu/vk/
GrVkCommandPool.h 25 return fCommandPool;
47 SkDebugf("GrVkCommandPool: %p (%d refs)\n", fCommandPool, this->getRefCnt());
62 VkCommandPool fCommandPool;
GrVkCommandPool.cpp 29 : fCommandPool(commandPool) {
55 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), ResetCommandPool(gpu->device(), fCommandPool, 0));
80 if (fCommandPool != VK_NULL_HANDLE) {
82 DestroyCommandPool(gpu->device(), fCommandPool, nullptr));
  /external/skqp/src/gpu/vk/
GrVkCommandPool.h 25 return fCommandPool;
47 SkDebugf("GrVkCommandPool: %p (%d refs)\n", fCommandPool, this->getRefCnt());
62 VkCommandPool fCommandPool;
GrVkCommandPool.cpp 29 : fCommandPool(commandPool) {
55 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), ResetCommandPool(gpu->device(), fCommandPool, 0));
80 if (fCommandPool != VK_NULL_HANDLE) {
82 DestroyCommandPool(gpu->device(), fCommandPool, nullptr));
  /external/skqp/tools/gpu/mtl/
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/
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/
VkTestContext.cpp 51 result = fCreateCommandPool(fDevice, &createInfo, nullptr, &fCommandPool);
58 allocateInfo.commandPool = fCommandPool;
78 fFreeCommandBuffers(fDevice, fCommandPool, 1, &fCommandBuffer);
79 fDestroyCommandPool(fDevice, fCommandPool, nullptr);
126 VkCommandPool fCommandPool;
  /external/skqp/tools/gpu/vk/
VkTestContext.cpp 51 result = fCreateCommandPool(fDevice, &createInfo, nullptr, &fCommandPool);
58 allocateInfo.commandPool = fCommandPool;
78 fFreeCommandBuffers(fDevice, fCommandPool, 1, &fCommandBuffer);
79 fDestroyCommandPool(fDevice, fCommandPool, nullptr);
126 VkCommandPool fCommandPool;
  /external/skqp/tools/sk_app/
VulkanWindowContext.cpp 44 , fCommandPool(VK_NULL_HANDLE)
351 if (VK_NULL_HANDLE == fCommandPool) {
360 nullptr, &fCommandPool));
373 commandBuffersInfo.commandPool = fCommandPool;
424 FreeCommandBuffers(fDevice, fCommandPool, 2,
456 if (VK_NULL_HANDLE != fCommandPool) {
457 GR_VK_CALL(fInterface, DestroyCommandPool(fDevice, fCommandPool, nullptr));
458 fCommandPool = VK_NULL_HANDLE;
VulkanWindowContext.h 116 VkCommandPool fCommandPool;

Completed in 227 milliseconds