Lines Matching refs:pSupportedVersion
1121 VkResult test_vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t* pSupportedVersion) {
1128 // loader puts the minimum it supports in pSupportedVersion, if that is lower than our minimum
1130 if (icd.min_icd_interface_version > *pSupportedVersion) {
1132 *pSupportedVersion = icd.min_icd_interface_version;
1137 if (icd.max_icd_interface_version < *pSupportedVersion) {
1139 *pSupportedVersion = icd.max_icd_interface_version;
1142 else if (icd.max_icd_interface_version > *pSupportedVersion) {
1144 // don't change *pSupportedVersion
1147 *pSupportedVersion = icd.max_icd_interface_version;
1156 FRAMEWORK_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t* pSupportedVersion);
1583 FRAMEWORK_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t* pSupportedVersion) {
1584 return test_vk_icdNegotiateLoaderICDInterfaceVersion(pSupportedVersion);