| 58 | namespace vkt { |
| 59 | |
| 60 | void Instance::Init(const VkInstanceCreateInfo& info) { ASSERT_EQ(VK_SUCCESS, vk::CreateInstance(&info, NULL, &handle_)); } |
| 61 | |
| 62 | void Instance::Destroy() noexcept { |
| 63 | if (handle_ != VK_NULL_HANDLE) { |
no test coverage detected