gallium/radeon: remove the IB flushing flag

Not needed anymore. A similar flag will be introduced in the next commit,
which will be private in radeonsi.

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
Marek Olšák 2015-11-07 13:43:18 +01:00
parent 81d412e02c
commit 8569f9a87e
4 changed files with 2 additions and 14 deletions

View file

@ -256,8 +256,6 @@ void r600_context_gfx_flush(void *context, unsigned flags,
if (cs->cdw == ctx->b.initial_gfx_cs_size && !fence)
return;
ctx->b.rings.gfx.flushing = true;
r600_preflush_suspend_features(&ctx->b);
/* flush the framebuffer cache */
@ -283,7 +281,6 @@ void r600_context_gfx_flush(void *context, unsigned flags,
/* Flush the CS. */
ctx->b.ws->cs_flush(cs, flags, fence, ctx->screen->b.cs_count++);
ctx->b.rings.gfx.flushing = false;
r600_begin_new_cs(ctx);
}

View file

@ -221,13 +221,8 @@ static void r600_flush_dma_ring(void *ctx, unsigned flags,
struct r600_common_context *rctx = (struct r600_common_context *)ctx;
struct radeon_winsys_cs *cs = rctx->rings.dma.cs;
if (!cs->cdw)
goto done;
rctx->rings.dma.flushing = true;
rctx->ws->cs_flush(cs, flags, &rctx->last_sdma_fence, 0);
rctx->rings.dma.flushing = false;
done:
if (cs->cdw)
rctx->ws->cs_flush(cs, flags, &rctx->last_sdma_fence, 0);
if (fence)
rctx->ws->fence_reference(fence, rctx->last_sdma_fence);
}

View file

@ -365,7 +365,6 @@ struct r600_streamout {
struct r600_ring {
struct radeon_winsys_cs *cs;
bool flushing;
void (*flush)(void *ctx, unsigned flags,
struct pipe_fence_handle **fence);
};

View file

@ -73,8 +73,6 @@ void si_context_gfx_flush(void *context, unsigned flags,
return;
}
ctx->b.rings.gfx.flushing = true;
r600_preflush_suspend_features(&ctx->b);
ctx->b.flags |= SI_CONTEXT_FLUSH_AND_INV_FRAMEBUFFER |
@ -116,7 +114,6 @@ void si_context_gfx_flush(void *context, unsigned flags,
/* Flush the CS. */
ws->cs_flush(cs, flags, &ctx->last_gfx_fence,
ctx->screen->b.cs_count++);
ctx->b.rings.gfx.flushing = false;
if (fence)
ws->fence_reference(fence, ctx->last_gfx_fence);