mesa: rename _mesa_unpack_int_rgba_row() to _mesa_unpack_uint_rgba_row()
authorBrian Paul <brianp@vmware.com>
Mon, 9 Jan 2012 15:11:33 +0000 (08:11 -0700)
committerBrian Paul <brianp@vmware.com>
Mon, 9 Jan 2012 15:11:33 +0000 (08:11 -0700)
Since it returns uint values, not int.

Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/main/format_unpack.c
src/mesa/main/format_unpack.h
src/mesa/main/readpix.c

index a22ff5a616e625cc17875e4422e785dbf476e590..c723e896de7ca9a462f9759ad31f8ac82aafc632 100644 (file)
@@ -1770,8 +1770,8 @@ unpack_int_rgba_ARGB2101010_UINT(const GLuint *src, GLuint dst[][4], 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])
 {
    switch (format) {
       /* Since there won't be any sign extension happening, there's no need to
index c5348d30d48aaf4a0036b74b4a827c48cea4f18a..bab29f6dd61f701d7957052ad9558e47e7aa24cd 100644 (file)
@@ -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,
index 38b9c64ed9f2c7b858a9c527e92563fac393d0f7..0c0e5394d66b5aba6d9c216d17a6fd389856c428 100644 (file)
@@ -273,7 +273,7 @@ slow_read_rgba_pixels( struct gl_context *ctx,
 
    for (j = 0; j < height; j++) {
       if (_mesa_is_integer_format(format)) {
-        _mesa_unpack_int_rgba_row(rbFormat, width, map, (GLuint (*)[4]) rgba);
+        _mesa_unpack_uint_rgba_row(rbFormat, width, map, (GLuint (*)[4]) rgba);
         _mesa_pack_rgba_span_int(ctx, width, (GLuint (*)[4]) rgba, format,
                                   type, dst);
       } else {