| 87 | } |
| 88 | |
| 89 | VkPhysicalDeviceFeatures PhysicalDevice::Features() const { |
| 90 | VkPhysicalDeviceFeatures features; |
| 91 | vk::GetPhysicalDeviceFeatures(handle(), &features); |
| 92 | return features; |
| 93 | } |
| 94 | |
| 95 | /* |
| 96 | * Return list of Global layers available |
no test coverage detected