diff options
author | Jason Ekstrand <[email protected]> | 2017-08-25 11:35:27 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-08-28 19:33:43 -0700 |
commit | 144487ebb8ab7505152318e08176885fd6475fe6 (patch) | |
tree | 13ca9dc583331d63ab28fa0cc20d2cc0f416ea86 /src/intel/vulkan/anv_private.h | |
parent | 3cd26d981b007c2667156c2a5049de96f1bf9cf1 (diff) |
anv/gem: Add a flags parameter to syncobj_create
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 3b50c49550e..9b3efda3708 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -805,7 +805,7 @@ int anv_gem_set_caching(struct anv_device *device, uint32_t gem_handle, uint32_t int anv_gem_set_domain(struct anv_device *device, uint32_t gem_handle, uint32_t read_domains, uint32_t write_domain); int anv_gem_sync_file_merge(struct anv_device *device, int fd1, int fd2); -uint32_t anv_gem_syncobj_create(struct anv_device *device); +uint32_t anv_gem_syncobj_create(struct anv_device *device, uint32_t flags); void anv_gem_syncobj_destroy(struct anv_device *device, uint32_t handle); int anv_gem_syncobj_handle_to_fd(struct anv_device *device, uint32_t handle); uint32_t anv_gem_syncobj_fd_to_handle(struct anv_device *device, int fd); |