diff options
author | Jason Ekstrand <[email protected]> | 2017-03-13 17:20:15 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-04-27 20:08:46 -0700 |
commit | 818b8579145196c7a8d4095bd5e65367e02a8fef (patch) | |
tree | 9392d3ef4b103adc00a1c69f68349453d2ce9947 /src/intel/vulkan/anv_wsi.c | |
parent | 494d6f65a7c5138bd3bda062afd6a1c4adadc1e8 (diff) |
anv: Use the BO cache for DeviceMemory allocations
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_wsi.c')
-rw-r--r-- | src/intel/vulkan/anv_wsi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/intel/vulkan/anv_wsi.c b/src/intel/vulkan/anv_wsi.c index a024561c942..17c43f86ea1 100644 --- a/src/intel/vulkan/anv_wsi.c +++ b/src/intel/vulkan/anv_wsi.c @@ -208,8 +208,8 @@ x11_anv_wsi_image_create(VkDevice device_h, * know we're writing to them and synchronize uses on other rings (eg if * the display server uses the blitter ring). */ - memory->bo.flags &= ~EXEC_OBJECT_ASYNC; - memory->bo.flags |= EXEC_OBJECT_WRITE; + memory->bo->flags &= ~EXEC_OBJECT_ASYNC; + memory->bo->flags |= EXEC_OBJECT_WRITE; anv_BindImageMemory(device_h, image_h, memory_h, 0); @@ -217,7 +217,7 @@ x11_anv_wsi_image_create(VkDevice device_h, assert(surface->isl.tiling == ISL_TILING_X); *row_pitch = surface->isl.row_pitch; - int ret = anv_gem_set_tiling(device, memory->bo.gem_handle, + int ret = anv_gem_set_tiling(device, memory->bo->gem_handle, surface->isl.row_pitch, I915_TILING_X); if (ret) { /* FINISHME: Choose a better error. */ @@ -226,7 +226,7 @@ x11_anv_wsi_image_create(VkDevice device_h, goto fail_alloc_memory; } - int fd = anv_gem_handle_to_fd(device, memory->bo.gem_handle); + int fd = anv_gem_handle_to_fd(device, memory->bo->gem_handle); if (fd == -1) { /* FINISHME: Choose a better error. */ result = vk_errorf(VK_ERROR_OUT_OF_DEVICE_MEMORY, |