panfrost: Allocate pool BOs against the pool
Instead of against the owning batch, to decouple. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5794>
This commit is contained in:
committed by
Marge Bot
parent
8882d6aad6
commit
6ef7c05746
@@ -85,11 +85,14 @@ panfrost_allocate_transient(struct panfrost_batch *batch, size_t sz)
|
||||
* flags to this function and keep the read/write,
|
||||
* fragment/vertex+tiler pools separate.
|
||||
*/
|
||||
bo = panfrost_batch_create_bo(batch, bo_sz, 0,
|
||||
PAN_BO_ACCESS_PRIVATE |
|
||||
PAN_BO_ACCESS_RW |
|
||||
PAN_BO_ACCESS_VERTEX_TILER |
|
||||
PAN_BO_ACCESS_FRAGMENT);
|
||||
bo = pan_bo_create(pan_device(batch->ctx->base.screen), bo_sz, 0);
|
||||
|
||||
uintptr_t flags = PAN_BO_ACCESS_PRIVATE |
|
||||
PAN_BO_ACCESS_RW |
|
||||
PAN_BO_ACCESS_VERTEX_TILER |
|
||||
PAN_BO_ACCESS_FRAGMENT;
|
||||
|
||||
_mesa_hash_table_insert(batch->pool.bos, bo, (void *) flags);
|
||||
|
||||
if (sz < TRANSIENT_SLAB_SIZE) {
|
||||
batch->pool.transient_bo = bo;
|
||||
|
||||
Reference in New Issue
Block a user