diff options
author | Chad Versace <[email protected]> | 2018-06-27 20:22:23 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2018-07-11 11:09:19 -0700 |
commit | be5fc0d7f114250d37597b38ef53711f2f66bc4f (patch) | |
tree | 652da4ae66e52aa53b61ad9f5ee477aa7a2c4c01 /src/intel | |
parent | 8e403bc959dee007cad58742147fa118202ccb03 (diff) |
anv/android: Fix type error in call to vk_errorf()
In a single call to vk_errorf() in the Android code, the arguments were
swapped. The bug has existed since day one. Chrome OS used to forgive
the warning, but it is now a compilation error.
CC: <[email protected]>
Fixes: 053d4c32 "anv: Implement VK_ANDROID_native_buffer (v9)"
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/anv_android.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_android.c b/src/intel/vulkan/anv_android.c index 3c905d3bdb5..a3bab8087b4 100644 --- a/src/intel/vulkan/anv_android.c +++ b/src/intel/vulkan/anv_android.c @@ -180,7 +180,7 @@ anv_image_from_gralloc(VkDevice device_h, goto fail_create; if (bo->size < image->size) { - result = vk_errorf(device, device->instance, + result = vk_errorf(device->instance, device, VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR, "dma-buf from VkNativeBufferANDROID is too small for " "VkImage: %"PRIu64"B < %"PRIu64"B", |