| 67 | } |
| 68 | |
| 69 | VkPhysicalDeviceProperties PhysicalDevice::Properties() const { |
| 70 | VkPhysicalDeviceProperties info; |
| 71 | vk::GetPhysicalDeviceProperties(handle(), &info); |
| 72 | return info; |
| 73 | } |
| 74 | |
| 75 | std::vector<VkQueueFamilyProperties> PhysicalDevice::QueueProperties() const { |
| 76 | uint32_t count = 0; |
nothing calls this directly
no test coverage detected