Home
last modified time | relevance | path

Searched refs:batch_bos (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/intel/vulkan/
Danv_batch_chain.c447 return LIST_ENTRY(struct anv_batch_bo, cmd_buffer->batch_bos.prev, link); in anv_cmd_buffer_current_batch_bo()
528 list_addtail(&new_bbo->link, &cmd_buffer->batch_bos); in anv_cmd_buffer_chain_batch()
681 list_inithead(&cmd_buffer->batch_bos); in anv_cmd_buffer_init_batch_bo_chain()
687 list_addtail(&batch_bo->link, &cmd_buffer->batch_bos); in anv_cmd_buffer_init_batch_bo_chain()
752 &cmd_buffer->batch_bos, link) { in anv_cmd_buffer_fini_batch_bo_chain()
761 assert(!list_empty(&cmd_buffer->batch_bos)); in anv_cmd_buffer_reset_batch_bo_chain()
762 while (cmd_buffer->batch_bos.next != cmd_buffer->batch_bos.prev) { in anv_cmd_buffer_reset_batch_bo_chain()
767 assert(!list_empty(&cmd_buffer->batch_bos)); in anv_cmd_buffer_reset_batch_bo_chain()
825 } else if ((cmd_buffer->batch_bos.next == cmd_buffer->batch_bos.prev) && in anv_cmd_buffer_end_batch_buffer()
882 list_first_entry(&secondary->batch_bos, struct anv_batch_bo, link); in anv_cmd_buffer_add_secondary()
[all …]
Danv_private.h1809 struct list_head batch_bos; member