| 55 | } |
| 56 | |
| 57 | uint64_t Utils::getDeviceUUID(VkPhysicalDevice physicalDevice) { |
| 58 | VkPhysicalDeviceProperties properties{}; |
| 59 | Layer::ovkGetPhysicalDeviceProperties(physicalDevice, &properties); |
| 60 | |
| 61 | return static_cast<uint64_t>(properties.vendorID) << 32 | properties.deviceID; |
| 62 | } |
| 63 | |
| 64 | uint32_t Utils::getMaxImageCount(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface) { |
| 65 | VkSurfaceCapabilitiesKHR capabilities{}; |
nothing calls this directly
no test coverage detected