diff options
author | Rob Clark <[email protected]> | 2017-10-05 17:05:03 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2017-10-26 08:39:32 -0400 |
commit | 4afcadbcc29b09a09573d3c144a0dd9712190ed1 (patch) | |
tree | 8c5b97874ea6d7d5ca40ca7d8768bb0b1d78a3f9 /src/gallium/drivers | |
parent | a4744c2ae71cee0fa17cc982f2ffc354ea6f2d93 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/freedreno/a5xx/fd5_gmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/a5xx/fd5_gmem.c b/src/gallium/drivers/freedreno/a5xx/fd5_gmem.c index d8d79217d5b..16c2f825d54 100644 --- a/src/gallium/drivers/freedreno/a5xx/fd5_gmem.c +++ b/src/gallium/drivers/freedreno/a5xx/fd5_gmem.c @@ -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); } |