freedreno: defer flush_queue allocation

Some apps, like warsow, create a bazillion contexts but don't render on
most of them.

Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
Rob Clark
2016-07-22 17:55:59 -04:00
parent 4175606474
commit 2d64a003c5
2 changed files with 4 additions and 2 deletions
@@ -265,6 +265,10 @@ batch_flush(struct fd_batch *batch)
if (batch->ctx->screen->reorder) {
struct fd_batch *tmp = NULL;
fd_batch_reference(&tmp, batch);
if (!util_queue_is_initialized(&batch->ctx->flush_queue))
util_queue_init(&batch->ctx->flush_queue, "flush_queue", 16, 1);
util_queue_add_job(&batch->ctx->flush_queue,
batch, &batch->flush_fence,
batch_flush_func, batch_cleanup_func);
@@ -184,8 +184,6 @@ fd_context_init(struct fd_context *ctx, struct pipe_screen *pscreen,
*/
if (!screen->reorder) {
ctx->batch = fd_bc_alloc_batch(&screen->batch_cache, ctx);
} else {
util_queue_init(&ctx->flush_queue, "flush_queue", 16, 1);
}
util_slab_create(&ctx->transfer_pool, sizeof(struct fd_transfer),