From 847c89870238fe5813e89831b38d5fab5356158c Mon Sep 17 00:00:00 2001 From: Christoph Bumiller Date: Mon, 16 Apr 2012 00:36:35 +0200 Subject: [PATCH] nvc0: fix nve4 linear copies --- src/gallium/drivers/nvc0/nvc0_transfer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/nvc0/nvc0_transfer.c b/src/gallium/drivers/nvc0/nvc0_transfer.c index fb44190574e..58dcd862c99 100644 --- a/src/gallium/drivers/nvc0/nvc0_transfer.c +++ b/src/gallium/drivers/nvc0/nvc0_transfer.c @@ -320,7 +320,8 @@ nve4_m2mf_copy_linear(struct nouveau_context *nv, PUSH_DATA (push, dst->offset + dstoff); BEGIN_NVC0(push, SUBC_COPY(0x0418), 1); PUSH_DATA (push, size); - IMMED_NVC0(push, SUBC_COPY(0x0300), 0x6); + BEGIN_NVC0(push, SUBC_COPY(0x0300), 1); + PUSH_DATA (push, 0x186); nouveau_bufctx_reset(bctx, 0); }