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/auxiliary/util/u_rect.h | |
parent | 4522cdbfdd1ec8c56f40b1f876e51c3dc8e7042a (diff) |
gallium: rename copy/fill_rect utility functions
Diffstat (limited to 'src/gallium/auxiliary/util/u_rect.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_rect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/util/u_rect.h b/src/gallium/auxiliary/util/u_rect.h index 59e842e16d1..daa50834d36 100644 --- a/src/gallium/auxiliary/util/u_rect.h +++ b/src/gallium/auxiliary/util/u_rect.h @@ -42,13 +42,13 @@ struct pipe_surface; extern void -pipe_copy_rect(ubyte * dst, const struct pipe_format_block *block, +util_copy_rect(ubyte * dst, const struct pipe_format_block *block, unsigned dst_stride, unsigned dst_x, unsigned dst_y, unsigned width, unsigned height, const ubyte * src, int src_stride, unsigned src_x, int src_y); extern void -pipe_fill_rect(ubyte * dst, const struct pipe_format_block *block, +util_fill_rect(ubyte * dst, const struct pipe_format_block *block, unsigned dst_stride, unsigned dst_x, unsigned dst_y, unsigned width, unsigned height, uint32_t value); |