vulkan: fix build issue on android (both anv/radv)
authorTapani Pälli <tapani.palli@intel.com>
Wed, 11 Apr 2018 07:23:11 +0000 (10:23 +0300)
committerTapani Pälli <tapani.palli@intel.com>
Wed, 11 Apr 2018 10:55:49 +0000 (13:55 +0300)
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>
src/amd/vulkan/radv_android.c
src/intel/vulkan/anv_android.c

index 09da601..c06c83b 100644 (file)
@@ -230,11 +230,11 @@ VkResult radv_GetSwapchainGrallocUsageANDROID(
        };
 
        /* 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__);
        }
 
index b1bbbb6..7e07dba 100644 (file)
@@ -254,11 +254,11 @@ VkResult anv_GetSwapchainGrallocUsageANDROID(
    };
 
    /* 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__);
    }