summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_copypix.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-07-23 16:07:39 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-07-23 16:07:39 +0000
commit55180f4b9216f8feb86dd6ecb4426fc6394c54b3 (patch)
tree67ff829a453395a8ac496d8e69cc48d42ffe5db3 /src/mesa/swrast/s_copypix.c
parentf3b85c983f469875ac76081a61539a6c7b26777c (diff)
GLubyte -> GLchan change
Diffstat (limited to 'src/mesa/swrast/s_copypix.c')
-rw-r--r--src/mesa/swrast/s_copypix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_copypix.c b/src/mesa/swrast/s_copypix.c
index df2b91b720..1dd570af05 100644
--- a/src/mesa/swrast/s_copypix.c
+++ b/src/mesa/swrast/s_copypix.c
@@ -1,4 +1,4 @@
-/* $Id: s_copypix.c,v 1.23 2001/07/13 20:07:37 brianp Exp $ */
+/* $Id: s_copypix.c,v 1.24 2001/07/23 16:07:39 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -720,7 +720,7 @@ static void copy_depth_pixels( GLcontext *ctx, GLint srcx, GLint srcy,
GLint i, j;
const GLboolean zoom = ctx->Pixel.ZoomX != 1.0F || ctx->Pixel.ZoomY != 1.0F;
GLint overlapping;
- DEFMARRAY(GLubyte, rgba, MAX_WIDTH, 4); /* mac 32k limitation */
+ DEFMARRAY(GLchan, rgba, MAX_WIDTH, 4); /* mac 32k limitation */
CHECKARRAY(rgba, return); /* mac 32k limitation */
if (!ctx->Visual.depthBits) {