From 743d859e62b56ebc1cedd4b9a06ea2d84743417e Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 11 Oct 2012 15:51:02 -0600 Subject: [PATCH] util: fix broken pipe_get_tile_rgba() call Fix breakage from commit 369e468. --- src/gallium/auxiliary/util/u_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/util/u_debug.c b/src/gallium/auxiliary/util/u_debug.c index fd9e28ac026..c41585fdd23 100644 --- a/src/gallium/auxiliary/util/u_debug.c +++ b/src/gallium/auxiliary/util/u_debug.c @@ -621,7 +621,7 @@ debug_dump_transfer_bmp(struct pipe_context *pipe, if(!rgba) goto error1; - pipe_get_tile_rgba(pipe, transfer, ptr, 0, 0, + pipe_get_tile_rgba(transfer, ptr, 0, 0, transfer->box.width, transfer->box.height, rgba); -- 2.30.2