Home
last modified time | relevance | path

Searched refs:GrVkCommandPool (Results 1 – 20 of 20) sorted by relevance

/external/skia/src/gpu/vk/
DGrVkCommandPool.cpp14 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()
DGrVkCommandPool.h20 class GrVkCommandPool : public GrVkResource {
22 static GrVkCommandPool* Create(const GrVkGpu* gpu);
52 GrVkCommandPool() = delete;
54 GrVkCommandPool(const GrVkGpu* gpu, VkCommandPool commandPool);
DGrVkResourceProvider.h29 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;
DGrVkCommandBuffer.h74 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()
DGrVkResourceProvider.cpp336 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 …]
DGrVkGpu.h26 class GrVkCommandPool; variable
59 GrVkCommandPool* cmdPool() const { return fCmdPool; } in cmdPool()
287 GrVkCommandPool* fCmdPool;
DGrVkCommandBuffer.cpp376 GrVkCommandPool* cmdPool) { in Create()
850 GrVkCommandPool* cmdPool) { in Create()
/external/skqp/src/gpu/vk/
DGrVkCommandPool.cpp14 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()
DGrVkCommandPool.h20 class GrVkCommandPool : public GrVkResource {
22 static GrVkCommandPool* Create(const GrVkGpu* gpu);
52 GrVkCommandPool() = delete;
54 GrVkCommandPool(const GrVkGpu* gpu, VkCommandPool commandPool);
DGrVkResourceProvider.h29 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;
DGrVkCommandBuffer.h73 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()
DGrVkResourceProvider.cpp336 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()
DGrVkGpu.h26 class GrVkCommandPool; variable
59 GrVkCommandPool* cmdPool() const { return fCmdPool; } in cmdPool()
276 GrVkCommandPool* fCmdPool;
DGrVkCommandBuffer.cpp373 GrVkCommandPool* cmdPool) { in Create()
840 GrVkCommandPool* cmdPool) { in Create()
/external/skia/tests/
DSurfaceSemaphoreTest.cpp249 GrVkCommandPool* cmdPool = gpu->cmdPool(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/skqp/tests/
DSurfaceSemaphoreTest.cpp249 GrVkCommandPool* cmdPool = gpu->cmdPool(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/skqp/gn/
Dgpu.gni599 "$_src/gpu/vk/GrVkCommandPool.cpp",
600 "$_src/gpu/vk/GrVkCommandPool.h",
/external/skia/gn/
Dgpu.gni610 "$_src/gpu/vk/GrVkCommandPool.cpp",
611 "$_src/gpu/vk/GrVkCommandPool.h",
/external/skqp/
DAndroid.bp1027 "src/gpu/vk/GrVkCommandPool.cpp",
/external/skia/
DAndroid.bp798 "src/gpu/vk/GrVkCommandPool.cpp",