diff options
author | Dave Airlie <[email protected]> | 2010-09-01 13:54:38 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-09-01 13:55:56 +1000 |
commit | d7e2509692d3aa8afb8d2236a4f28b6ab502ec62 (patch) | |
tree | bd17163d6ade53313cfa46589feaeba9628f8637 /src/gallium | |
parent | bea5f559a6f52e8fb7c32ee8e9f9c5f04c05b582 (diff) |
r600g: fix typo causing segfault.
fixes warning that
r600_blit.c: In function ‘r600_resource_copy_region’:
r600_blit.c:136: warning: passing argument 1 of ‘util_resource_copy_region’ from incompatible pointer type
and also 7 more piglit tests.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/r600/r600_blit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index dbcd6cdea8b..a8263ccbce9 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -132,7 +132,7 @@ static void r600_resource_copy_region(struct pipe_context *ctx, unsigned srcx, unsigned srcy, unsigned srcz, unsigned width, unsigned height) { - util_resource_copy_region(pipe, dst, subdst, dstx, dsty, dstz, + util_resource_copy_region(ctx, dst, subdst, dstx, dsty, dstz, src, subsrc, srcx, srcy, srcz, width, height); } |