vk/reloc_list: Actually set the new length in reloc_list_grow
authorJason Ekstrand <jason.ekstrand@intel.com>
Thu, 30 Jul 2015 18:29:55 +0000 (11:29 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Thu, 30 Jul 2015 18:29:55 +0000 (11:29 -0700)
src/vulkan/anv_cmd_buffer.c

index 5126f4a981cd0028cc4d3a6114e90ff3775cd2fa..ee79e1b4924528b8bdd210cc03ee57a270200bc0 100644 (file)
@@ -126,6 +126,7 @@ anv_reloc_list_grow(struct anv_reloc_list *list, struct anv_device *device,
    anv_device_free(device, list->relocs);
    anv_device_free(device, list->reloc_bos);
 
+   list->array_length = new_length;
    list->relocs = new_relocs;
    list->reloc_bos = new_reloc_bos;