/external/skia/src/gpu/vk/ |
D | GrVkCommandPool.cpp | 14 GrVkCommandPool* GrVkCommandPool::Create(const GrVkGpu* gpu) { in Create() 25 return new GrVkCommandPool(gpu, pool); in Create() 28 GrVkCommandPool::GrVkCommandPool(const GrVkGpu* gpu, VkCommandPool commandPool) in GrVkCommandPool() function in GrVkCommandPool 33 GrVkSecondaryCommandBuffer* GrVkCommandPool::findOrCreateSecondaryCommandBuffer(GrVkGpu* gpu) { in findOrCreateSecondaryCommandBuffer() 42 void GrVkCommandPool::recycleSecondaryCommandBuffer(GrVkSecondaryCommandBuffer* buffer) { in recycleSecondaryCommandBuffer() 47 void GrVkCommandPool::close() { in close() 51 void GrVkCommandPool::reset(GrVkGpu* gpu) { in reset() 58 void GrVkCommandPool::releaseResources(GrVkGpu* gpu) { in releaseResources() 66 void GrVkCommandPool::abandonGPUData() const { in abandonGPUData() 74 void GrVkCommandPool::freeGPUData(GrVkGpu* gpu) const { in freeGPUData()
|
D | GrVkCommandPool.h | 20 class GrVkCommandPool : public GrVkResource { 22 static GrVkCommandPool* Create(const GrVkGpu* gpu); 52 GrVkCommandPool() = delete; 54 GrVkCommandPool(const GrVkGpu* gpu, VkCommandPool commandPool);
|
D | GrVkResourceProvider.h | 29 class GrVkCommandPool; variable 91 GrVkCommandPool* findOrCreateCommandPool(); 183 void backgroundReset(GrVkCommandPool* pool); 185 void reset(GrVkCommandPool* pool); 275 SkSTArray<4, GrVkCommandPool*, true> fActiveCommandPools; 278 SkSTArray<4, GrVkCommandPool*, true> fAvailableCommandPools;
|
D | GrVkCommandBuffer.h | 74 GrVkCommandPool* commandPool() { return fCmdPool; } in commandPool() 135 GrVkCommandBuffer(VkCommandBuffer cmdBuffer, GrVkCommandPool* cmdPool, 169 GrVkCommandPool* fCmdPool; 209 static GrVkPrimaryCommandBuffer* Create(const GrVkGpu* gpu, GrVkCommandPool* cmdPool); 317 explicit GrVkPrimaryCommandBuffer(VkCommandBuffer cmdBuffer, GrVkCommandPool* cmdPool) in GrVkPrimaryCommandBuffer() 336 static GrVkSecondaryCommandBuffer* Create(const GrVkGpu* gpu, GrVkCommandPool* cmdPool); 353 explicit GrVkSecondaryCommandBuffer(VkCommandBuffer cmdBuffer, GrVkCommandPool* cmdPool) in GrVkSecondaryCommandBuffer()
|
D | GrVkResourceProvider.cpp | 336 GrVkCommandPool* GrVkResourceProvider::findOrCreateCommandPool() { in findOrCreateCommandPool() 338 GrVkCommandPool* result; in findOrCreateCommandPool() 343 result = GrVkCommandPool::Create(fGpu); in findOrCreateCommandPool() 347 for (const GrVkCommandPool* pool : fActiveCommandPools) { in findOrCreateCommandPool() 350 for (const GrVkCommandPool* pool : fAvailableCommandPools) { in findOrCreateCommandPool() 361 GrVkCommandPool* pool = fActiveCommandPools[i]; in checkCommandBuffers() 376 GrVkCommandPool* pool = fActiveCommandPools[i]; in addFinishedProcToActiveCommandBuffers() 434 for (GrVkCommandPool* pool : fActiveCommandPools) { in destroyResources() 440 for (GrVkCommandPool* pool : fAvailableCommandPools) { in destroyResources() 521 void GrVkResourceProvider::backgroundReset(GrVkCommandPool* pool) { in backgroundReset() [all …]
|
D | GrVkGpu.h | 26 class GrVkCommandPool; variable 59 GrVkCommandPool* cmdPool() const { return fCmdPool; } in cmdPool() 287 GrVkCommandPool* fCmdPool;
|
D | GrVkCommandBuffer.cpp | 376 GrVkCommandPool* cmdPool) { in Create() 850 GrVkCommandPool* cmdPool) { in Create()
|
/external/skqp/src/gpu/vk/ |
D | GrVkCommandPool.cpp | 14 GrVkCommandPool* GrVkCommandPool::Create(const GrVkGpu* gpu) { in Create() 25 return new GrVkCommandPool(gpu, pool); in Create() 28 GrVkCommandPool::GrVkCommandPool(const GrVkGpu* gpu, VkCommandPool commandPool) in GrVkCommandPool() function in GrVkCommandPool 33 GrVkSecondaryCommandBuffer* GrVkCommandPool::findOrCreateSecondaryCommandBuffer(GrVkGpu* gpu) { in findOrCreateSecondaryCommandBuffer() 42 void GrVkCommandPool::recycleSecondaryCommandBuffer(GrVkSecondaryCommandBuffer* buffer) { in recycleSecondaryCommandBuffer() 47 void GrVkCommandPool::close() { in close() 51 void GrVkCommandPool::reset(GrVkGpu* gpu) { in reset() 58 void GrVkCommandPool::releaseResources(GrVkGpu* gpu) { in releaseResources() 66 void GrVkCommandPool::abandonGPUData() const { in abandonGPUData() 74 void GrVkCommandPool::freeGPUData(GrVkGpu* gpu) const { in freeGPUData()
|
D | GrVkCommandPool.h | 20 class GrVkCommandPool : public GrVkResource { 22 static GrVkCommandPool* Create(const GrVkGpu* gpu); 52 GrVkCommandPool() = delete; 54 GrVkCommandPool(const GrVkGpu* gpu, VkCommandPool commandPool);
|
D | GrVkResourceProvider.h | 29 class GrVkCommandPool; variable 91 GrVkCommandPool* findOrCreateCommandPool(); 176 void backgroundReset(GrVkCommandPool* pool); 178 void reset(GrVkCommandPool* pool); 268 SkSTArray<4, GrVkCommandPool*, true> fActiveCommandPools; 271 SkSTArray<4, GrVkCommandPool*, true> fAvailableCommandPools;
|
D | GrVkCommandBuffer.h | 73 GrVkCommandPool* commandPool() { return fCmdPool; } in commandPool() 134 GrVkCommandBuffer(VkCommandBuffer cmdBuffer, GrVkCommandPool* cmdPool, 168 GrVkCommandPool* fCmdPool; 208 static GrVkPrimaryCommandBuffer* Create(const GrVkGpu* gpu, GrVkCommandPool* cmdPool); 314 explicit GrVkPrimaryCommandBuffer(VkCommandBuffer cmdBuffer, GrVkCommandPool* cmdPool) in GrVkPrimaryCommandBuffer() 332 static GrVkSecondaryCommandBuffer* Create(const GrVkGpu* gpu, GrVkCommandPool* cmdPool); 349 explicit GrVkSecondaryCommandBuffer(VkCommandBuffer cmdBuffer, GrVkCommandPool* cmdPool) in GrVkSecondaryCommandBuffer()
|
D | GrVkResourceProvider.cpp | 336 GrVkCommandPool* GrVkResourceProvider::findOrCreateCommandPool() { in findOrCreateCommandPool() 338 GrVkCommandPool* result; in findOrCreateCommandPool() 343 result = GrVkCommandPool::Create(fGpu); in findOrCreateCommandPool() 347 for (const GrVkCommandPool* pool : fActiveCommandPools) { in findOrCreateCommandPool() 350 for (const GrVkCommandPool* pool : fAvailableCommandPools) { in findOrCreateCommandPool() 361 GrVkCommandPool* pool = fActiveCommandPools[i]; in checkCommandBuffers() 422 for (GrVkCommandPool* pool : fActiveCommandPools) { in destroyResources() 428 for (GrVkCommandPool* pool : fAvailableCommandPools) { in destroyResources() 509 void GrVkResourceProvider::backgroundReset(GrVkCommandPool* pool) { in backgroundReset() 522 void GrVkResourceProvider::reset(GrVkCommandPool* pool) { in reset()
|
D | GrVkGpu.h | 26 class GrVkCommandPool; variable 59 GrVkCommandPool* cmdPool() const { return fCmdPool; } in cmdPool() 276 GrVkCommandPool* fCmdPool;
|
D | GrVkCommandBuffer.cpp | 373 GrVkCommandPool* cmdPool) { in Create() 840 GrVkCommandPool* cmdPool) { in Create()
|
/external/skia/tests/ |
D | SurfaceSemaphoreTest.cpp | 249 GrVkCommandPool* cmdPool = gpu->cmdPool(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/external/skqp/tests/ |
D | SurfaceSemaphoreTest.cpp | 249 GrVkCommandPool* cmdPool = gpu->cmdPool(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/external/skqp/gn/ |
D | gpu.gni | 599 "$_src/gpu/vk/GrVkCommandPool.cpp", 600 "$_src/gpu/vk/GrVkCommandPool.h",
|
/external/skia/gn/ |
D | gpu.gni | 610 "$_src/gpu/vk/GrVkCommandPool.cpp", 611 "$_src/gpu/vk/GrVkCommandPool.h",
|
/external/skqp/ |
D | Android.bp | 1027 "src/gpu/vk/GrVkCommandPool.cpp",
|
/external/skia/ |
D | Android.bp | 798 "src/gpu/vk/GrVkCommandPool.cpp",
|