| 461 | } |
| 462 | |
| 463 | const void VulkanDevice::bindImageMemory(const VkImage& image, const VkDeviceMemory& memory, |
| 464 | const VkDeviceSize& memoryOffset) const { |
| 465 | vkBindImageMemory(mDevice, image, memory, memoryOffset); |
| 466 | } |
| 467 | |
| 468 | const VkResult VulkanDevice::createImageView(VkImageView& view, const VkImage& image, const VkImageViewType& viewType, |
| 469 | const VkFormat& format, const VkAllocationCallbacks* allocator) const { |