summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_rect.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-08-19 13:17:03 -0600
committerBrian Paul <brianp@vmware.com>2009-08-19 13:17:58 -0600
commit8604a896a60a5f3f81d6ebecf827aeaddf8c640c (patch)
tree34958794de3dbe433396b47ac85a13562637e3b8 /src/gallium/auxiliary/util/u_rect.h
parent4522cdbfdd1ec8c56f40b1f876e51c3dc8e7042a (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.h4
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 59e842e16d..daa50834d3 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);