Fixes linking errors against:
anv_GetPhysicalDeviceImageFormatProperties2KHR
radv_GetPhysicalDeviceImageFormatProperties2KHR
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
};
/* Check that requested format and usage are supported. */
- result = radv_GetPhysicalDeviceImageFormatProperties2KHR(phys_dev_h,
- &image_format_info, &image_format_props);
+ result = radv_GetPhysicalDeviceImageFormatProperties2(phys_dev_h,
+ &image_format_info, &image_format_props);
if (result != VK_SUCCESS) {
return vk_errorf(result,
- "radv_GetPhysicalDeviceImageFormatProperties2KHR failed "
+ "radv_GetPhysicalDeviceImageFormatProperties2 failed "
"inside %s", __func__);
}
};
/* Check that requested format and usage are supported. */
- result = anv_GetPhysicalDeviceImageFormatProperties2KHR(phys_dev_h,
+ result = anv_GetPhysicalDeviceImageFormatProperties2(phys_dev_h,
&image_format_info, &image_format_props);
if (result != VK_SUCCESS) {
return vk_errorf(device->instance, device, result,
- "anv_GetPhysicalDeviceImageFormatProperties2KHR failed "
+ "anv_GetPhysicalDeviceImageFormatProperties2 failed "
"inside %s", __func__);
}