Module: Mesa
Branch: fast-color-clear
Commit: 357313ab0f123b4e4b1efc74f5e5b1514c421e68
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=357313ab0f123b4e4b1efc74f5e5b1514c421e68

Author: Jonathan Marek <[email protected]>
Date:   Fri Feb 22 19:21:27 2019 +0100

freedreno: a2xx: don't write 4th vertex in mem2gmem

There is only room for 3 vertices now (RECT has 3 vertices).

Fixes: 6ef7700a

Signed-off-by: Jonathan Marek <[email protected]>

---

 src/gallium/drivers/freedreno/a2xx/fd2_gmem.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c 
b/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c
index 1c073e31739..41636c29648 100644
--- a/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c
+++ b/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c
@@ -272,7 +272,7 @@ fd2_emit_tile_mem2gmem(struct fd_batch *batch, struct 
fd_tile *tile)
        x1 = ((float)tile->xoff + bin_w) / ((float)pfb->width);
        y0 = ((float)tile->yoff) / ((float)pfb->height);
        y1 = ((float)tile->yoff + bin_h) / ((float)pfb->height);
-       OUT_PKT3(ring, CP_MEM_WRITE, 9);
+       OUT_PKT3(ring, CP_MEM_WRITE, 7);
        OUT_RELOC(ring, fd_resource(fd2_ctx->solid_vertexbuf)->bo, 36, 0, 0);
        OUT_RING(ring, fui(x0));
        OUT_RING(ring, fui(y0));
@@ -280,8 +280,6 @@ fd2_emit_tile_mem2gmem(struct fd_batch *batch, struct 
fd_tile *tile)
        OUT_RING(ring, fui(y0));
        OUT_RING(ring, fui(x0));
        OUT_RING(ring, fui(y1));
-       OUT_RING(ring, fui(x1));
-       OUT_RING(ring, fui(y1));
 
        OUT_PKT3(ring, CP_SET_CONSTANT, 2);
        OUT_RING(ring, CP_REG(REG_A2XX_VGT_INDX_OFFSET));

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to