diff options
author | Brian Paul <[email protected]> | 2009-08-19 13:17:03 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-19 13:17:58 -0600 |
commit | 8604a896a60a5f3f81d6ebecf827aeaddf8c640c (patch) | |
tree | 34958794de3dbe433396b47ac85a13562637e3b8 /src/gallium/drivers | |
parent | 4522cdbfdd1ec8c56f40b1f876e51c3dc8e7042a (diff) |
gallium: rename copy/fill_rect utility functions
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/i965simple/brw_surface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/i965simple/brw_surface.c b/src/gallium/drivers/i965simple/brw_surface.c index 511779dbfa0..724a69b2eee 100644 --- a/src/gallium/drivers/i965simple/brw_surface.c +++ b/src/gallium/drivers/i965simple/brw_surface.c @@ -60,7 +60,7 @@ brw_surface_copy(struct pipe_context *pipe, src, PIPE_BUFFER_USAGE_CPU_READ ); - pipe_copy_rect(dst_map, + util_copy_rect(dst_map, &dst->block, dst->stride, dstx, dsty, @@ -99,7 +99,7 @@ brw_surface_fill(struct pipe_context *pipe, dst, PIPE_BUFFER_USAGE_CPU_WRITE ); - pipe_fill_rect(dst_map, &dst->block, dst->stride, dstx, dsty, width, height, value); + util_fill_rect(dst_map, &dst->block, dst->stride, dstx, dsty, width, height, value); pipe->screen->surface_unmap(pipe->screen, dst); } |