diff options
author | Brian Paul <[email protected]> | 2010-01-07 08:48:25 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-07 09:20:48 -0700 |
commit | f39bae8e68bf461a424bf33112ea79aee3044615 (patch) | |
tree | 5fee1ad1f727b50579abe59fb560168134a0b93d /src/gallium/auxiliary/util/u_rect.h | |
parent | 8081c1eaa56bc46a641ee9283ef9b6c416b5b4b2 (diff) |
gallium/util: make src_y unsigned like the other x/y params
Diffstat (limited to 'src/gallium/auxiliary/util/u_rect.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_rect.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_rect.h b/src/gallium/auxiliary/util/u_rect.h index 5e444ffae21..b44d821904b 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, |