freedreno/a3xx: call fd3_emit_ib() directly from fd3

No reason for the indirection when called from a3xx specific code.

Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
Rob Clark 2019-07-31 17:35:11 -07:00
parent 32014afa44
commit 4326eeac97
3 changed files with 7 additions and 7 deletions

View File

@ -945,12 +945,6 @@ fd3_emit_restore(struct fd_batch *batch, struct fd_ringbuffer *ring)
fd_hw_query_enable(batch, ring);
}
static void
fd3_emit_ib(struct fd_ringbuffer *ring, struct fd_ringbuffer *target)
{
__OUT_IB(ring, true, target);
}
void
fd3_emit_init(struct pipe_context *pctx)
{

View File

@ -94,6 +94,12 @@ void fd3_emit_restore(struct fd_batch *batch, struct fd_ringbuffer *ring);
void fd3_emit_init(struct pipe_context *pctx);
static inline void
fd3_emit_ib(struct fd_ringbuffer *ring, struct fd_ringbuffer *target)
{
__OUT_IB(ring, true, target);
}
static inline void
fd3_emit_cache_flush(struct fd_batch *batch, struct fd_ringbuffer *ring)
{

View File

@ -868,7 +868,7 @@ emit_binning_pass(struct fd_batch *batch)
A3XX_PC_VSTREAM_CONTROL_N(0));
/* emit IB to binning drawcmds: */
ctx->emit_ib(ring, batch->binning);
fd3_emit_ib(ring, batch->binning);
fd_reset_wfi(batch);
fd_wfi(batch, ring);