diff options
author | Brian Paul <[email protected]> | 2012-01-09 08:11:33 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-09 08:11:33 -0700 |
commit | 301fba54452c01673bb9f105fbc3e68a704ad18a (patch) | |
tree | ed7729bacc9197a85a46f633f5f6516684bdb61c /src/mesa/main/format_unpack.h | |
parent | 8c2bfa34a0d70ab08de44e3b091b3a097abbad97 (diff) |
mesa: rename _mesa_unpack_int_rgba_row() to _mesa_unpack_uint_rgba_row()
Since it returns uint values, not int.
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/format_unpack.h')
-rw-r--r-- | src/mesa/main/format_unpack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/format_unpack.h b/src/mesa/main/format_unpack.h index c5348d30d48..bab29f6dd61 100644 --- a/src/mesa/main/format_unpack.h +++ b/src/mesa/main/format_unpack.h @@ -30,8 +30,8 @@ _mesa_unpack_rgba_row(gl_format format, GLuint n, void -_mesa_unpack_int_rgba_row(gl_format format, GLuint n, - const void *src, GLuint dst[][4]); +_mesa_unpack_uint_rgba_row(gl_format format, GLuint n, + const void *src, GLuint dst[][4]); extern void _mesa_unpack_rgba_block(gl_format format, |