Lines Matching defs:impl
590 CommandBuffer* const impl = new CommandBuffer(m_device, VkCommandPool(reinterpret_cast<deUintptr>(this)), level);
594 m_buffers.push_back(impl);
598 delete impl;
602 return reinterpret_cast<VkCommandBuffer>(impl);
607 CommandBuffer* const impl = reinterpret_cast<CommandBuffer*>(buffer);
611 if (m_buffers[ndx] == impl)
615 delete impl;
655 DescriptorSet* const impl = new DescriptorSet(m_device, VkDescriptorPool(reinterpret_cast<deUintptr>(this)), setLayout);
659 m_managedSets.push_back(impl);
663 delete impl;
667 return VkDescriptorSet(reinterpret_cast<deUintptr>(impl));
672 DescriptorSet* const impl = reinterpret_cast<DescriptorSet*>((deUintptr)set.getInternal());
679 if (m_managedSets[ndx] == impl)
683 delete impl;