Mesa (master): gallium/util: make src_y unsigned like the other x/y params

Brian Paul brianp at kemper.freedesktop.org
Thu Jan 7 16:20:58 UTC 2010


Module: Mesa
Branch: master
Commit: f39bae8e68bf461a424bf33112ea79aee3044615
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f39bae8e68bf461a424bf33112ea79aee3044615

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Jan  7 08:48:25 2010 -0700

gallium/util: make src_y unsigned like the other x/y params

---

 src/gallium/auxiliary/util/u_rect.c |    2 +-
 src/gallium/auxiliary/util/u_rect.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_rect.c b/src/gallium/auxiliary/util/u_rect.c
index 298fbac..85ca058 100644
--- a/src/gallium/auxiliary/util/u_rect.c
+++ b/src/gallium/auxiliary/util/u_rect.c
@@ -54,7 +54,7 @@ util_copy_rect(ubyte * dst,
                const ubyte * src,
                int src_stride,
                unsigned src_x, 
-               int src_y)
+               unsigned src_y)
 {
    unsigned i;
    int src_stride_pos = src_stride < 0 ? -src_stride : src_stride;
diff --git a/src/gallium/auxiliary/util/u_rect.h b/src/gallium/auxiliary/util/u_rect.h
index 5e444ff..b44d821 100644
--- a/src/gallium/auxiliary/util/u_rect.h
+++ b/src/gallium/auxiliary/util/u_rect.h
@@ -45,7 +45,7 @@ extern void
 util_copy_rect(ubyte * dst, enum pipe_format format,
                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);
+               int src_stride, unsigned src_x, unsigned src_y);
 
 extern void
 util_fill_rect(ubyte * dst, enum pipe_format format,




More information about the mesa-commit mailing list