| 1539 | } |
| 1540 | |
| 1541 | VkPhysicalDeviceFeatures2 VulkanDeviceInfoExtensions::initDeviceFeatures2(void *pNext) { |
| 1542 | VkPhysicalDeviceFeatures2 features2{}; |
| 1543 | features2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2_KHR; |
| 1544 | features2.pNext = pNext; |
| 1545 | return features2; |
| 1546 | } |
| 1547 | |
| 1548 | void VulkanDeviceInfoExtensions::pushFeature2(const char* extension, std::string name, bool supported) { |
| 1549 | features2.push_back(Feature2(name, supported, extension)); |
nothing calls this directly
no outgoing calls
no test coverage detected