summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTapani Pälli <tapani.palli@intel.com>2018-04-11 10:23:11 +0300
committerTapani Pälli <tapani.palli@intel.com>2018-04-11 13:55:49 +0300
commit9f29b1a4c84644cd2b2749352cd6064ea408ce6b (patch)
treed959d00d9728d6292ba14dba4db28ff38885c23c
parent41e6ffee49832c57b3821e4b63e0245db7b115f9 (diff)
vulkan: fix build issue on android (both anv/radv)
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>
-rw-r--r--src/amd/vulkan/radv_android.c6
-rw-r--r--src/intel/vulkan/anv_android.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/amd/vulkan/radv_android.c b/src/amd/vulkan/radv_android.c
index 09da601dac..c06c83b8ab 100644
--- a/src/amd/vulkan/radv_android.c
+++ b/src/amd/vulkan/radv_android.c
@@ -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__);
}
diff --git a/src/intel/vulkan/anv_android.c b/src/intel/vulkan/anv_android.c
index b1bbbb6829..7e07dbaaa4 100644
--- a/src/intel/vulkan/anv_android.c
+++ b/src/intel/vulkan/anv_android.c
@@ -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__);
}