mesa: s/GLchan/GLubyte/ in mipmap generation code
authorBrian Paul <brianp@vmware.com>
Sat, 17 Sep 2011 21:22:28 +0000 (15:22 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 21 Sep 2011 02:17:41 +0000 (20:17 -0600)
src/mesa/main/mipmap.c

index f170d235a2e85cb3644e586be6d6af85205f8d71..5f18c71681dc1ab31733ed3033d8825ad3b86b4c 100644 (file)
@@ -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);
 }