diff options
author | Marek Olšák <[email protected]> | 2011-10-08 01:06:36 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-10-08 02:21:24 +0200 |
commit | 20788a908b23362ca2804010f6ac8504894ed32c (patch) | |
tree | 4d73b8d3f3d68a94826a336f1e49712813fc19eb /src/gallium/drivers/r300/r300_blit.c | |
parent | 93c26d8baf5294b77e019b90d9995b5da565ea3c (diff) |
r300g: remove unused r300_resource::tex_offset
Diffstat (limited to 'src/gallium/drivers/r300/r300_blit.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_blit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/r300/r300_blit.c b/src/gallium/drivers/r300/r300_blit.c index 3c1b3648a24..f0743d503d0 100644 --- a/src/gallium/drivers/r300/r300_blit.c +++ b/src/gallium/drivers/r300/r300_blit.c @@ -545,17 +545,17 @@ static void r300_resource_copy_region(struct pipe_context *pipe, } if (old_src.format != new_src.format) - r300_resource_set_properties(pipe->screen, src, 0, &new_src); + r300_resource_set_properties(pipe->screen, src, &new_src); if (old_dst.format != new_dst.format) - r300_resource_set_properties(pipe->screen, dst, 0, &new_dst); + r300_resource_set_properties(pipe->screen, dst, &new_dst); r300_hw_copy_region(pipe, dst, dst_level, dstx, dsty, dstz, src, src_level, src_box); if (old_src.format != new_src.format) - r300_resource_set_properties(pipe->screen, src, 0, &old_src); + r300_resource_set_properties(pipe->screen, src, &old_src); if (old_dst.format != new_dst.format) - r300_resource_set_properties(pipe->screen, dst, 0, &old_dst); + r300_resource_set_properties(pipe->screen, dst, &old_dst); } void r300_init_blit_functions(struct r300_context *r300) |