diff options
author | Tapani Pälli <[email protected]> | 2018-04-11 10:23:11 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2018-04-11 13:55:49 +0300 |
commit | 9f29b1a4c84644cd2b2749352cd6064ea408ce6b (patch) | |
tree | d959d00d9728d6292ba14dba4db28ff38885c23c /src/intel/vulkan | |
parent | 41e6ffee49832c57b3821e4b63e0245db7b115f9 (diff) |
vulkan: fix build issue on android (both anv/radv)
Fixes linking errors against:
anv_GetPhysicalDeviceImageFormatProperties2KHR
radv_GetPhysicalDeviceImageFormatProperties2KHR
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/intel/vulkan')
-rw-r--r-- | src/intel/vulkan/anv_android.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_android.c b/src/intel/vulkan/anv_android.c index b1bbbb68290..7e07dbaaa45 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__); } |