| 258 | } |
| 259 | |
| 260 | void DeviceBuffer::UnmapMemory(VkDevice vk_device) |
| 261 | { |
| 262 | if (m_MappedDataPtr == 0) |
| 263 | { |
| 264 | return; |
| 265 | } |
| 266 | vkUnmapMemory(vk_device, m_Handle.m_Memory); |
| 267 | m_MappedDataPtr = 0; |
| 268 | } |
| 269 | |
| 270 | const VulkanResourceType DeviceBuffer::GetType() |
| 271 | { |
no outgoing calls
no test coverage detected