| 32 | } |
| 33 | |
| 34 | VkPhysicalDeviceProperties2 VulkanDeviceInfoExtensions::initDeviceProperties2(void * pNext) { |
| 35 | VkPhysicalDeviceProperties2 props2{}; |
| 36 | props2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2_KHR; |
| 37 | props2.pNext = pNext; |
| 38 | return props2; |
| 39 | } |
| 40 | |
| 41 | void VulkanDeviceInfoExtensions::readPhysicalProperties_AMD() { |
| 42 | VkPhysicalDeviceProperties2 deviceProps2{}; |
nothing calls this directly
no outgoing calls
no test coverage detected