From fc4d1b9ba965f26c504e6f5fea12e2bac2d71d72 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Sat, 8 May 2010 14:16:46 +0100 Subject: util: fix copy_rect stride in default transfer_inline_write --- src/gallium/auxiliary/util/u_transfer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gallium/auxiliary/util') diff --git a/src/gallium/auxiliary/util/u_transfer.c b/src/gallium/auxiliary/util/u_transfer.c index bedace3b1d..69f6fab950 100644 --- a/src/gallium/auxiliary/util/u_transfer.c +++ b/src/gallium/auxiliary/util/u_transfer.c @@ -35,12 +35,12 @@ void u_default_transfer_inline_write( struct pipe_context *pipe, util_copy_rect(map, resource->format, - transfer->stride, /* bytes? */ + transfer->stride, /* bytes */ 0, 0, box->width, box->height, data, - box->width, /* bytes? texels? */ + stride, /* bytes */ 0, 0); out: -- cgit v1.2.3