HomeSort by relevance Sort by last modified time
    Searched refs:commandPool (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/deqp/external/vulkancts/framework/vulkan/
vkRefUtil.cpp 58 return Move<VkCommandBuffer>(check<VkCommandBuffer>(object), Deleter<VkCommandBuffer>(vk, device, pAllocateInfo->commandPool));
121 VkCommandPool commandPool,
129 commandPool,
vkRefUtil.hpp 65 VkCommandPool commandPool,
vkDeviceDriverImpl.inl 350 void DeviceDriver::destroyCommandPool (VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator) const
352 m_vk.destroyCommandPool(device, commandPool, pAllocator);
355 VkResult DeviceDriver::resetCommandPool (VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) const
357 return m_vk.resetCommandPool(device, commandPool, flags);
365 void DeviceDriver::freeCommandBuffers (VkDevice device, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const
367 m_vk.freeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffers);
635 void DeviceDriver::trimCommandPoolKHR (VkDevice device, VkCommandPool commandPool, VkCommandPoolTrimFlagsKHR flags) const
637 m_vk.trimCommandPoolKHR(device, commandPool, flags);
    [all...]
vkConcreteDeviceInterface.inl 73 virtual void destroyCommandPool (VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator) const;
74 virtual VkResult resetCommandPool (VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) const;
76 virtual void freeCommandBuffers (VkDevice device, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const;
130 virtual void trimCommandPoolKHR (VkDevice device, VkCommandPool commandPool, VkCommandPoolTrimFlagsKHR flags) const;
vkVirtualDeviceInterface.inl 73 virtual void destroyCommandPool (VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator) const = 0;
74 virtual VkResult resetCommandPool (VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) const = 0;
76 virtual void freeCommandBuffers (VkDevice device, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const = 0;
130 virtual void trimCommandPoolKHR (VkDevice device, VkCommandPool commandPool, VkCommandPoolTrimFlagsKHR flags) const = 0;
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/threading/
threading.cpp 293 startWriteObject(my_data, pAllocateInfo->commandPool);
297 finishWriteObject(my_data, pAllocateInfo->commandPool);
303 command_pool_map[pCommandBuffers[index]] = pAllocateInfo->commandPool;
310 VKAPI_ATTR void VKAPI_CALL FreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount,
317 startWriteObject(my_data, commandPool);
322 pTable->FreeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffers);
324 finishWriteObject(my_data, commandPool);
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
threading.cpp 293 startWriteObject(my_data, pAllocateInfo->commandPool);
297 finishWriteObject(my_data, pAllocateInfo->commandPool);
303 command_pool_map[pCommandBuffers[index]] = pAllocateInfo->commandPool;
310 VKAPI_ATTR void VKAPI_CALL FreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount,
317 startWriteObject(my_data, commandPool);
322 pTable->FreeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffers);
324 finishWriteObject(my_data, commandPool);
object_tracker.h 420 static void alloc_command_buffer(VkDevice device, VkCommandPool commandPool, VkCommandBuffer vkObj,
430 pNewObjNode->parentObj = (uint64_t)commandPool;
442 static bool validate_command_buffer(VkDevice device, VkCommandPool commandPool, VkCommandBuffer commandBuffer) {
448 if (pNode->parentObj != (uint64_t)(commandPool)) {
453 reinterpret_cast<uint64_t>(commandBuffer), pNode->parentObj, reinterpret_cast<uint64_t &>(commandPool));
    [all...]
device_limits.cpp 475 DestroyCommandPool(VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks *pAllocator) {
477 ->device_dispatch_table->DestroyCommandPool(device, commandPool, pAllocator);
481 ResetCommandPool(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) {
483 ->device_dispatch_table->ResetCommandPool(device, commandPool, flags);
495 FreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t count, const VkCommandBuffer *pCommandBuffers) {
497 ->device_dispatch_table->FreeCommandBuffers(device, commandPool, count, pCommandBuffers);
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_dump.c 267 VkCommandPool commandPool;
273 }, NULL, &commandPool);
280 .commandPool = commandPool,
319 anv_DestroyCommandPool(vk_device, commandPool, NULL);
anv_cmd_buffer.c 231 ANV_FROM_HANDLE(anv_cmd_pool, pool, pAllocateInfo->commandPool);
244 anv_FreeCommandBuffers(_device, pAllocateInfo->commandPool,
269 VkCommandPool commandPool,
769 VkCommandPool commandPool,
773 ANV_FROM_HANDLE(anv_cmd_pool, pool, commandPool);
788 VkCommandPool commandPool,
791 ANV_FROM_HANDLE(anv_cmd_pool, pool, commandPool);
  /external/vulkan-validation-layers/layers/
threading.cpp 342 startWriteObject(my_data, pAllocateInfo->commandPool);
348 finishWriteObject(my_data, pAllocateInfo->commandPool);
357 command_pool_map[pCommandBuffers[index]] = pAllocateInfo->commandPool;
364 VKAPI_ATTR void VKAPI_CALL FreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount,
373 startWriteObject(my_data, commandPool);
386 pTable->FreeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffers);
389 finishWriteObject(my_data, commandPool);
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMakeUtil.cpp 119 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool)
121 return allocateCommandBuffer(vk, device, commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY);
vktPipelineMakeUtil.hpp 80 vk::Move<vk::VkCommandBuffer> makeCommandBuffer (const vk::DeviceInterface& vk, const vk::VkDevice device, const vk::VkCommandPool commandPool);
  /external/skia/tools/gpu/vk/
VkTestContext.cpp 41 allocateInfo.commandPool = fCommandPool;
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationSmokeTests.cpp 404 vk::Move<VkCommandPool> commandPool;
408 commandPool = createCommandPool(deviceInterface, device, 0u, queueFamilyNdx);
413 commandBufferInfo.commandPool = commandPool.get();
418 *commandBufferRef = vk::Move<VkCommandBuffer>(vk::check<VkCommandBuffer>(commandBuffer), Deleter<VkCommandBuffer>(deviceInterface, device, commandPool.get()));
419 *commandPoolRef = commandPool;
575 vk::Move<VkCommandPool> commandPool;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiNullHandleTests.cpp 52 inline void release (Context& context, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator)
54 context.getDeviceInterface().destroyCommandPool(context.getDevice(), commandPool, pAllocator);
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryBindingTests.cpp 415 VkCommandPool commandPool)
421 commandPool,
647 Move<VkCommandPool> commandPool = createCommandPool(vk, vkDevice, VK_COMMAND_POOL_CREATE_TRANSIENT_BIT, 0);
648 Move<VkCommandBuffer> cmdBuffer = createCommandBuffer(vk, vkDevice, *commandPool);
679 Move<VkCommandPool> commandPool = createCommandPool(vk, vkDevice, VK_COMMAND_POOL_CREATE_TRANSIENT_BIT, 0);
680 Move<VkCommandBuffer> cmdBuffer = createCommandBuffer(vk, vkDevice, *commandPool);
740 Move<VkCommandPool> commandPool = createCommandPool(vk, vkDevice, VK_COMMAND_POOL_CREATE_TRANSIENT_BIT, 0);
741 Move<VkCommandBuffer> cmdBuffer = createCommandBuffer(vk, vkDevice, *commandPool);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBufferSparseBinding.cpp 212 const Unique<VkCommandPool> commandPool(makeCommandPool(deviceInterface, getDevice(), computeQueue.queueFamilyIndex));
213 const Unique<VkCommandBuffer> commandBuffer(allocateCommandBuffer(deviceInterface, getDevice(), *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY));
vktSparseResourcesBufferMemoryAliasing.cpp 265 const Unique<VkCommandPool> commandPool(makeCommandPool(deviceInterface, getDevice(), computeQueue.queueFamilyIndex));
266 const Unique<VkCommandBuffer> commandBuffer(allocateCommandBuffer(deviceInterface, getDevice(), *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY));
vktSparseResourcesBufferSparseResidency.cpp 259 const Unique<VkCommandPool> commandPool(makeCommandPool(deviceInterface, getDevice(), computeQueue.queueFamilyIndex));
260 const Unique<VkCommandBuffer> commandBuffer(allocateCommandBuffer(deviceInterface, getDevice(), *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY));
  /external/skia/tools/gpu/mtl/
MtlTestContext.mm 43 allocateInfo.commandPool = fCommandPool;
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/device_limits/
device_limits.cpp 475 DestroyCommandPool(VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks *pAllocator) {
477 ->device_dispatch_table->DestroyCommandPool(device, commandPool, pAllocator);
481 ResetCommandPool(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) {
483 ->device_dispatch_table->ResetCommandPool(device, commandPool, flags);
495 FreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t count, const VkCommandBuffer *pCommandBuffers) {
497 ->device_dispatch_table->FreeCommandBuffers(device, commandPool, count, pCommandBuffers);
    [all...]
  /frameworks/native/vulkan/libvulkan/
api_gen.cpp 368 VKAPI_ATTR void DestroyCommandPool(VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator);
369 VKAPI_ATTR VkResult ResetCommandPool(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags);
371 VKAPI_ATTR void FreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers);
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/unique_objects/
unique_objects.cpp     [all...]

Completed in 1026 milliseconds

1 2 3 4