From 5704b8e57a0c618ddf51502e99e9dbd48cc3e685 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 10 Sep 2005 16:27:51 +0000 Subject: fix a problem w/ color index mode when CHAN_BITS=16 --- src/mesa/drivers/osmesa/osmesa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/drivers/osmesa/osmesa.c b/src/mesa/drivers/osmesa/osmesa.c index 16e9073ad7..c12a23b51b 100644 --- a/src/mesa/drivers/osmesa/osmesa.c +++ b/src/mesa/drivers/osmesa/osmesa.c @@ -1,6 +1,6 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.5 * * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * @@ -294,7 +294,7 @@ get_buffer_size( GLframebuffer *buffer, GLuint *width, GLuint *height ) #define SPAN_VARS \ const OSMesaContext osmesa = OSMESA_CONTEXT(ctx); #define INIT_PIXEL_PTR(P, X, Y) \ - GLubyte *P = osmesa->rowaddr[Y] + (X) + GLubyte *P = (GLubyte *) osmesa->rowaddr[Y] + (X) #define INC_PIXEL_PTR(P) P += 1 #define STORE_PIXEL(DST, X, Y, VALUE) \ *DST = VALUE[0] @@ -1039,7 +1039,7 @@ compute_row_addresses( OSMesaContext ctx ) if (ctx->format == OSMESA_COLOR_INDEX) { /* CI mode */ - bytesPerPixel = 1 * sizeof(GLchan); + bytesPerPixel = 1 * sizeof(GLubyte); } else if ((ctx->format == OSMESA_RGB) || (ctx->format == OSMESA_BGR)) { /* RGB mode */ -- cgit v1.2.3