mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
etnaviv: blt: Directly call etna_try_blt_blit(..)
Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> Reviewed-by: Lucas Stach <l.stach@pengutronix.de> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19013>
This commit is contained in:
parent
f126f81e68
commit
22920d5691
1 changed files with 1 additions and 7 deletions
|
|
@ -553,12 +553,6 @@ etna_try_blt_blit(struct pipe_context *pctx,
|
|||
return true;
|
||||
}
|
||||
|
||||
static bool
|
||||
etna_blit_blt(struct pipe_context *pctx, const struct pipe_blit_info *blit_info)
|
||||
{
|
||||
return etna_try_blt_blit(pctx, blit_info);
|
||||
}
|
||||
|
||||
void
|
||||
etna_clear_blit_blt_init(struct pipe_context *pctx)
|
||||
{
|
||||
|
|
@ -566,5 +560,5 @@ etna_clear_blit_blt_init(struct pipe_context *pctx)
|
|||
|
||||
DBG("etnaviv: Using BLT blit engine");
|
||||
pctx->clear = etna_clear_blt;
|
||||
ctx->blit = etna_blit_blt;
|
||||
ctx->blit = etna_try_blt_blit;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue