mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
freedreno/a5xx: mem2gmem is read-only for BO
This should be OUT_RELOC() since the operation isn't writing to the buffer. Technically it doesn't matter much currently, since we'd anyways to a gmem2mem later. But that will change. Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
a4744c2ae7
commit
4afcadbcc2
1 changed files with 1 additions and 1 deletions
|
|
@ -547,7 +547,7 @@ fd5_emit_tile_mem2gmem(struct fd_batch *batch, struct fd_tile *tile)
|
|||
A5XX_RB_MRT_BUF_INFO_COLOR_SWAP(WZYX));
|
||||
OUT_RING(ring, A5XX_RB_MRT_PITCH(slice->pitch * rsc->cpp));
|
||||
OUT_RING(ring, A5XX_RB_MRT_ARRAY_PITCH(slice->size0));
|
||||
OUT_RELOCW(ring, rsc->bo, 0, 0, 0); /* BASE_LO/HI */
|
||||
OUT_RELOC(ring, rsc->bo, 0, 0, 0); /* BASE_LO/HI */
|
||||
|
||||
emit_mem2gmem_surf(batch, ctx->gmem.zsbuf_base[0], pfb->zsbuf, BLIT_MRT0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue