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