summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/mipmap.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-09-17 15:22:28 -0600
committerBrian Paul <brianp@vmware.com>2011-09-20 20:17:41 -0600
commit529b9360f326dd25bd12cf8e036b9ac1c63a8032 (patch)
tree37b44d9a2376dae93afdf119b6a13fa7fb1a4505 /src/mesa/main/mipmap.c
parentdbae4960831d319ff2f536d88dc3104d9e031dfa (diff)
downloadexternal_mesa3d-529b9360f326dd25bd12cf8e036b9ac1c63a8032.zip
external_mesa3d-529b9360f326dd25bd12cf8e036b9ac1c63a8032.tar.gz
external_mesa3d-529b9360f326dd25bd12cf8e036b9ac1c63a8032.tar.bz2
mesa: s/GLchan/GLubyte/ in mipmap generation code
Diffstat (limited to 'src/mesa/main/mipmap.c')
-rw-r--r--src/mesa/main/mipmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/mipmap.c b/src/mesa/main/mipmap.c
index f170d23..5f18c71 100644
--- a/src/mesa/main/mipmap.c
+++ b/src/mesa/main/mipmap.c
@@ -1986,7 +1986,7 @@ generate_mipmap_compressed(struct gl_context *ctx, GLenum target,
gl_format temp_format;
GLint components;
GLuint temp_src_stride, temp_dst_stride; /* in bytes */
- GLchan *temp_src = NULL, *temp_dst = NULL;
+ GLubyte *temp_src = NULL, *temp_dst = NULL;
GLenum temp_datatype;
GLenum temp_base_format;
@@ -2101,7 +2101,7 @@ generate_mipmap_compressed(struct gl_context *ctx, GLenum target,
/* swap src and dest pointers */
{
- GLchan *temp = temp_src;
+ GLubyte *temp = temp_src;
temp_src = temp_dst;
temp_dst = temp;
@@ -2109,7 +2109,7 @@ generate_mipmap_compressed(struct gl_context *ctx, GLenum target,
}
} /* loop over mipmap levels */
- free((void *) temp_src);
+ free(temp_src);
free(temp_dst);
}