summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r300/r300_blit.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2011-10-08 01:06:36 +0200
committerMarek Olšák <[email protected]>2011-10-08 02:21:24 +0200
commit20788a908b23362ca2804010f6ac8504894ed32c (patch)
tree4d73b8d3f3d68a94826a336f1e49712813fc19eb /src/gallium/drivers/r300/r300_blit.c
parent93c26d8baf5294b77e019b90d9995b5da565ea3c (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.c8
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)