| 244 | } |
| 245 | |
| 246 | void LastSynchronizedPresent::Merge(const LastSynchronizedPresent& other) { |
| 247 | for (const auto& other_entry : other.per_swapchain) { |
| 248 | Update(other_entry.first, other_entry.second); |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | void LastSynchronizedPresent::OnDestroySwapchain(VkSwapchainKHR swapchain) { |
| 253 | // TODO: add erase() to small_vector and use intead in the following code |
no outgoing calls
no test coverage detected