MCPcopy Create free account
hub / github.com/alibaba/MNN / allocMemory

Method allocMemory

source/backend/vulkan/component/VulkanDevice.cpp:297–300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

295}
296
297const VkResult VulkanDevice::allocMemory(VkDeviceMemory& memory, const VkMemoryAllocateInfo& allocateInfo,
298 const VkAllocationCallbacks* allocator) const {
299 return vkAllocateMemory(mDevice, &allocateInfo, allocator, &memory);
300}
301
302const void VulkanDevice::freeMemory(const VkDeviceMemory& memory, const VkAllocationCallbacks* allocator) const {
303 vkFreeMemory(mDevice, memory, allocator);

Callers 2

VulkanImageMethod · 0.45
VulkanBufferMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected