| 123 | } |
| 124 | |
| 125 | uint32_t VulkanMemoryManager::GetSizeAlignment(VkMemoryRequirements const & memReqs) const |
| 126 | { |
| 127 | return math::LCM(static_cast<uint32_t>(memReqs.alignment), static_cast<uint32_t>(m_deviceLimits.nonCoherentAtomSize)); |
| 128 | } |
| 129 | |
| 130 | // static |
| 131 | uint32_t VulkanMemoryManager::GetAligned(uint32_t value, uint32_t alignment) |
no test coverage detected