diff options
author | Chad Versace <[email protected]> | 2017-09-11 16:41:21 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2017-10-17 11:08:26 -0700 |
commit | eb69a61806a6bee22f2306420314ac712f4c6e1e (patch) | |
tree | c554761aec91ebc820fd0f908b882f1ba6d202b1 /src/intel/vulkan/anv_intel.c | |
parent | 076a279a1a0e3ffd537ff8c8e3d8541bd2d07830 (diff) |
anv: Move close(fd) from anv_bo_cache_import to its callers (v2)
This will allow us to implement VK_ANDROID_native_buffer without dup'ing
the fd. We must close the fd in VK_KHR_external_memory_fd, but we should
not in VK_ANDROID_native_buffer.
v2:
- Add missing close(fd) for case
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR, subcase
ANV_SEMAPHORE_TYPE_BO.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_intel.c')
-rw-r--r-- | src/intel/vulkan/anv_intel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_intel.c b/src/intel/vulkan/anv_intel.c index 9f8cd927345..d6bad44091a 100644 --- a/src/intel/vulkan/anv_intel.c +++ b/src/intel/vulkan/anv_intel.c @@ -71,6 +71,8 @@ VkResult anv_CreateDmaBufImageINTEL( if (result != VK_SUCCESS) goto fail; + close(pCreateInfo->fd); + image = anv_image_from_handle(image_h); result = anv_bo_cache_import(device, &device->bo_cache, |