Lines Matching refs:props
101 const VkPhysicalDeviceProperties& props) { in getPhysicalDevicePropertiesString() argument
104 uint16_t apiMaj = (uint16_t)(props.apiVersion >> 22); in getPhysicalDevicePropertiesString()
105 uint16_t apiMin = (uint16_t)(0x000003ff & (props.apiVersion >> 12)); in getPhysicalDevicePropertiesString()
106 uint16_t apiPatch = (uint16_t)(0x000007ff & (props.apiVersion)); in getPhysicalDevicePropertiesString()
109 ss << "Driver version: " << std::hex << props.driverVersion << "\n"; in getPhysicalDevicePropertiesString()
110 ss << "Vendor ID: " << std::hex << props.vendorID << "\n"; in getPhysicalDevicePropertiesString()
111 ss << "Device ID: " << std::hex << props.deviceID << "\n"; in getPhysicalDevicePropertiesString()
112 ss << "Device type: " << deviceTypeToString(props.deviceType) << "\n"; in getPhysicalDevicePropertiesString()
113 ss << "Device name: " << props.deviceName << "\n"; in getPhysicalDevicePropertiesString()
149 std::vector<VkExtensionProperties> props(count); in testInstanceCreation() local
150 vk->vkEnumerateInstanceExtensionProperties(nullptr, &count, props.data()); in testInstanceCreation()
153 fprintf(stderr, "%s: ext: %s\n", __func__, props[i].extensionName); in testInstanceCreation()