Mesa (master): anv/cmd_buffer: Use the device allocator for QueueSubmit

Jason Ekstrand jekstrand at kemper.freedesktop.org
Fri Apr 28 03:53:03 UTC 2017


Module: Mesa
Branch: master
Commit: bd3a9813b92bd2e116b58f0932bc7f1f722a9f63
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=bd3a9813b92bd2e116b58f0932bc7f1f722a9f63

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Mon Feb 27 17:31:05 2017 -0800

anv/cmd_buffer: Use the device allocator for QueueSubmit

The command is really operating on a Queue not a command buffer and the
nearest object to that with an allocator is VkDevice.

Reviewed-by: Chad Versace <chadversary at chromium.org>
Cc: "17.0 17.1" <mesa-dev at lists.freedesktop.org>

---

 src/intel/vulkan/anv_batch_chain.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/intel/vulkan/anv_batch_chain.c b/src/intel/vulkan/anv_batch_chain.c
index 5f0528fc8f..3e9fa4cad5 100644
--- a/src/intel/vulkan/anv_batch_chain.c
+++ b/src/intel/vulkan/anv_batch_chain.c
@@ -1265,7 +1265,7 @@ anv_cmd_buffer_execbuf(struct anv_device *device,
                                       cmd_buffer->last_ss_pool_center);
    VkResult result =
       anv_execbuf_add_bo(&execbuf, &ss_pool->bo, &cmd_buffer->surface_relocs,
-                         &cmd_buffer->pool->alloc);
+                         &device->alloc);
    if (result != VK_SUCCESS)
       return result;
 
@@ -1278,7 +1278,7 @@ anv_cmd_buffer_execbuf(struct anv_device *device,
                                        cmd_buffer->last_ss_pool_center);
 
       result = anv_execbuf_add_bo(&execbuf, &(*bbo)->bo, &(*bbo)->relocs,
-                                  &cmd_buffer->pool->alloc);
+                                  &device->alloc);
       if (result != VK_SUCCESS)
          return result;
    }
@@ -1387,7 +1387,7 @@ anv_cmd_buffer_execbuf(struct anv_device *device,
 
    result = anv_device_execbuf(device, &execbuf.execbuf, execbuf.bos);
 
-   anv_execbuf_finish(&execbuf, &cmd_buffer->pool->alloc);
+   anv_execbuf_finish(&execbuf, &device->alloc);
 
    return result;
 }




More information about the mesa-commit mailing list