/external/swiftshader/src/Vulkan/ |
D | VkCommandPool.cpp | 23 CommandPool::CommandPool(const VkCommandPoolCreateInfo *pCreateInfo, void *mem) in CommandPool() function in vk::CommandPool 32 void CommandPool::destroy(const VkAllocationCallbacks *pAllocator) in destroy() 44 size_t CommandPool::ComputeRequiredAllocationSize(const VkCommandPoolCreateInfo *pCreateInfo) in ComputeRequiredAllocationSize() 49 VkResult CommandPool::allocateCommandBuffers(Device *device, VkCommandBufferLevel level, uint32_t c… in allocateCommandBuffers() 81 void CommandPool::freeCommandBuffers(uint32_t commandBufferCount, const VkCommandBuffer *pCommandBu… in freeCommandBuffers() 90 VkResult CommandPool::reset(VkCommandPoolResetFlags flags) in reset() 109 void CommandPool::trim(VkCommandPoolTrimFlags flags) in trim()
|
D | VkCommandPool.hpp | 26 class CommandPool : public Object<CommandPool, VkCommandPool> class 29 CommandPool(const VkCommandPoolCreateInfo *pCreateInfo, void *mem); 43 static inline CommandPool *Cast(VkCommandPool object) in Cast() 45 return CommandPool::Cast(object); in Cast()
|
/external/deqp-deps/amber/src/vulkan/ |
D | command_pool.cc | 22 CommandPool::CommandPool(Device* device) : device_(device) {} in CommandPool() function in amber::vulkan::CommandPool 24 CommandPool::~CommandPool() { in ~CommandPool() 32 Result CommandPool::Initialize() { in Initialize()
|
D | command_pool.h | 28 class CommandPool { 30 explicit CommandPool(Device* device); 31 ~CommandPool();
|
D | command_buffer.h | 34 class CommandPool; variable 41 CommandBuffer(Device* device, CommandPool* pool); 56 CommandPool* pool_ = nullptr;
|
D | graphics_pipeline.h | 37 class CommandPool; variable 50 Result Initialize(uint32_t width, uint32_t height, CommandPool* pool);
|
D | compute_pipeline.h | 36 Result Initialize(CommandPool* pool);
|
D | pipeline.h | 77 Result Initialize(CommandPool* pool);
|
D | compute_pipeline.cc | 34 Result ComputePipeline::Initialize(CommandPool* pool) { in Initialize()
|
D | engine_vulkan.h | 92 std::unique_ptr<CommandPool> pool_;
|
D | command_buffer.cc | 25 CommandBuffer::CommandBuffer(Device* device, CommandPool* pool) in CommandBuffer()
|
D | pipeline.cc | 76 Result Pipeline::Initialize(CommandPool* pool) { in Initialize()
|
D | engine_vulkan.cc | 131 pool_ = MakeUnique<CommandPool>(device_.get()); in Initialize()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkNullDriver.cpp | 530 class CommandPool class 533 CommandPool (VkDevice device, const VkCommandPoolCreateInfo*) in CommandPool() function in vk::__anon2ef59b070111::CommandPool 536 ~CommandPool (void); 547 CommandPool::~CommandPool (void) in ~CommandPool() 553 VkCommandBuffer CommandPool::allocate (VkCommandBufferLevel level) in allocate() 570 void CommandPool::free (VkCommandBuffer buffer) in free() 1275 …CommandPool* const poolImpl = reinterpret_cast<CommandPool*>((deUintptr)pAllocateInfo->commandPool… in allocateCommandBuffers() 1286 CommandPool* const poolImpl = reinterpret_cast<CommandPool*>((deUintptr)commandPool.getInternal()); in freeCommandBuffers()
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | PersistentCommandPool.h | 43 vk::CommandPool mCommandPool;
|
D | vk_wrapper.h | 34 FUNC(CommandPool) \ 130 class CommandPool final : public WrappedObject<CommandPool, VkCommandPool> 133 CommandPool() = default; 173 void destroy(VkDevice device, const CommandPool &commandPool); 622 ANGLE_INLINE void CommandPool::destroy(VkDevice device) 631 ANGLE_INLINE VkResult CommandPool::reset(VkDevice device, VkCommandPoolResetFlags flags) 637 ANGLE_INLINE void CommandPool::freeCommandBuffers(VkDevice device, 645 ANGLE_INLINE VkResult CommandPool::init(VkDevice device, const VkCommandPoolCreateInfo &createInfo) 755 ANGLE_INLINE void CommandBuffer::destroy(VkDevice device, const vk::CommandPool &commandPool)
|
D | ContextVk.h | 61 vk::CommandPool commandPool; 79 const vk::CommandPool &commandPool, 93 vk::CommandPool *commandPool, 106 vk::CommandPool *commandPool, 545 const vk::CommandPool &getCommandPool() const; 1050 vk::CommandPool mCommandPool;
|
D | CommandGraph.cpp | 31 const CommandPool &commandPool, in InitAndBeginCommandBuffer() 44 const CommandPool &commandPool, in InitAndBeginCommandBuffer() 452 const CommandPool &commandPool, in beginOutsideRenderPassRecording()
|
D | RendererVk.h | 350 vk::CommandPool mOneOffCommandPool;
|
D | CommandGraph.h | 102 const CommandPool &commandPool,
|
D | vk_utils.cpp | 643 case HandleType::CommandPool: in destroy()
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiObjectManagementTests.cpp | 2172 struct CommandPool struct 2192 return getSafeObjectCount<CommandPool>(context, params, DEFAULT_MAX_CONCURRENT_OBJECTS); in getMaxConcurrent() 2215 CommandPool::Parameters commandPool; 2218 Parameters (const CommandPool::Parameters& commandPool_, in Parameters() 2227 Dependency<CommandPool> commandPool; 2790 CaseDescription<CommandPool> commandPool; 2971 static const NamedParameters<CommandPool> s_commandPoolCases[] = in createObjectManagementTests() 2973 { "command_pool", CommandPool::Parameters((VkCommandPoolCreateFlags)0) }, in createObjectManagementTests() 2974 { "command_pool_transient", CommandPool::Parameters(VK_COMMAND_POOL_CREATE_TRANSIENT_BIT) } in createObjectManagementTests() 2978 …{ "command_buffer_primary", CommandBuffer::Parameters(CommandPool::Parameters((VkCommandPoolCreat… in createObjectManagementTests() [all …]
|
/external/vulkan-validation-layers/tests/ |
D | vktestbinding.h | 77 class CommandPool; variable 723 class CommandPool : public internal::NonDispHandle<VkCommandPool> { 725 ~CommandPool(); 727 explicit CommandPool() : NonDispHandle() {} in CommandPool() function 728 … explicit CommandPool(const Device &dev, const VkCommandPoolCreateInfo &info) { init(dev, info); } in CommandPool() function 735 inline VkCommandPoolCreateInfo CommandPool::create_info(uint32_t queue_family_index, VkCommandPoolC… in create_info()
|
D | vktestbinding.cpp | 825 NON_DISPATCHABLE_HANDLE_DTOR(CommandPool, vkDestroyCommandPool) in NON_DISPATCHABLE_HANDLE_DTOR() argument 827 void CommandPool::init(const Device &dev, const VkCommandPoolCreateInfo &info) { in NON_DISPATCHABLE_HANDLE_DTOR()
|
D | vkrenderframework.h | 181 class VkCommandPoolObj : public vk_testing::CommandPool {
|