From: Brian Paul Date: Thu, 11 Oct 2012 21:51:02 +0000 (-0600) Subject: util: fix broken pipe_get_tile_rgba() call X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=743d859e62b56ebc1cedd4b9a06ea2d84743417e;p=mesa.git util: fix broken pipe_get_tile_rgba() call Fix breakage from commit 369e468. --- 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);