| 1006 | } |
| 1007 | |
| 1008 | static void CheckVk(VkResult result, const std::string& context) { |
| 1009 | if (result != VK_SUCCESS) |
| 1010 | throw std::runtime_error(context + ": VkResult=" + std::to_string(static_cast<int>(result))); |
| 1011 | } |
| 1012 | |
| 1013 | class DirectVulkanPreviewCompositor { |
| 1014 | public: |
no outgoing calls
no test coverage detected