diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/drivers/glide/fxdd.c | 2 | ||||
| -rw-r--r-- | src/mesa/drivers/x11/xm_api.c | 4 | ||||
| -rw-r--r-- | src/mesa/main/attrib.c | 6 | ||||
| -rw-r--r-- | src/mesa/main/context.c | 16 | ||||
| -rw-r--r-- | src/mesa/main/context.h | 6 | ||||
| -rw-r--r-- | src/mesa/swrast/s_texture.c | 12 | ||||
| -rw-r--r-- | src/mesa/tnl/t_imm_eval.c | 8 | 
7 files changed, 19 insertions, 35 deletions
diff --git a/src/mesa/drivers/glide/fxdd.c b/src/mesa/drivers/glide/fxdd.c index 658fc88e09..6298a76c30 100644 --- a/src/mesa/drivers/glide/fxdd.c +++ b/src/mesa/drivers/glide/fxdd.c @@ -791,7 +791,7 @@ fxDDInitFxMesaContext(fxMesaContext fxMesa)     FX_grGlideGetState((GrState *) fxMesa->state);     /* Run the config file */ -   _mesa_context_initialize(fxMesa->glCtx); +   _mesa_read_config_file(fxMesa->glCtx);     return 1;  } diff --git a/src/mesa/drivers/x11/xm_api.c b/src/mesa/drivers/x11/xm_api.c index 5bb7b05f86..904fe16fce 100644 --- a/src/mesa/drivers/x11/xm_api.c +++ b/src/mesa/drivers/x11/xm_api.c @@ -1,4 +1,4 @@ -/* $Id: xm_api.c,v 1.21 2001/04/27 21:18:25 brianp Exp $ */ +/* $Id: xm_api.c,v 1.22 2001/05/03 14:11:18 brianp Exp $ */  /*   * Mesa 3-D graphics library @@ -1669,7 +1669,7 @@ XMesaContext XMesaCreateContext( XMesaVisual v, XMesaContext share_list )     /* Run the config file      */ -   _mesa_context_initialize( ctx ); +   _mesa_read_config_file( ctx );     return c; diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 0acb2a9597..772e304d09 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1,4 +1,4 @@ -/* $Id: attrib.c,v 1.49 2001/04/17 21:25:53 brianp Exp $ */ +/* $Id: attrib.c,v 1.50 2001/05/03 14:11:18 brianp Exp $ */  /*   * Mesa 3-D graphics library @@ -672,7 +672,7 @@ pop_texture_group(GLcontext *ctx, const struct gl_texture_attrib *texAttrib)           bordColor[2] = CHAN_TO_FLOAT(obj->BorderColor[2]);           bordColor[3] = CHAN_TO_FLOAT(obj->BorderColor[3]); -         _mesa_TexParameteri(target, GL_TEXTURE_PRIORITY, obj->Priority); +         _mesa_TexParameterf(target, GL_TEXTURE_PRIORITY, obj->Priority);           _mesa_TexParameterfv(target, GL_TEXTURE_BORDER_COLOR, bordColor);           _mesa_TexParameteri(target, GL_TEXTURE_WRAP_S, obj->WrapS);           _mesa_TexParameteri(target, GL_TEXTURE_WRAP_T, obj->WrapT); @@ -694,7 +694,7 @@ pop_texture_group(GLcontext *ctx, const struct gl_texture_attrib *texAttrib)                                  obj->CompareOperator);           }           if (ctx->Extensions.SGIX_shadow_ambient) { -            _mesa_TexParameteri(target, GL_SHADOW_AMBIENT_SGIX, +            _mesa_TexParameterf(target, GL_SHADOW_AMBIENT_SGIX,                                  CHAN_TO_FLOAT(obj->ShadowAmbient));           } diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 948de1b330..d09ca7f853 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.135 2001/04/28 08:39:17 keithw Exp $ */ +/* $Id: context.c,v 1.136 2001/05/03 14:11:18 brianp Exp $ */  /*   * Mesa 3-D graphics library @@ -1498,7 +1498,7 @@ _mesa_initialize_context( GLcontext *ctx,  #if defined(MESA_TRACE) -   ctx->TraceCtx = CALLOC( sizeof(trace_context_t) ); +   ctx->TraceCtx = (trace_context_t *) CALLOC( sizeof(trace_context_t) );  #if 0     /* Brian: do you want to have CreateContext fail here,         or should we just trap in NewTrace (currently done)? */ @@ -1675,18 +1675,6 @@ _mesa_destroy_context( GLcontext *ctx )  /* - * Called by the driver after both the context and driver are fully - * initialized.  Currently just reads the config file. - */ -void -_mesa_context_initialize( GLcontext *ctx ) -{ -   _mesa_read_config_file( ctx ); -} - - - -/*   * Copy attribute groups from one context to another.   * Input:  src - source context   *         dst - destination context diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h index 825881b870..3d56ada053 100644 --- a/src/mesa/main/context.h +++ b/src/mesa/main/context.h @@ -1,4 +1,4 @@ -/* $Id: context.h,v 1.26 2001/04/27 21:17:20 brianp Exp $ */ +/* $Id: context.h,v 1.27 2001/05/03 14:11:18 brianp Exp $ */  /*   * Mesa 3-D graphics library @@ -150,10 +150,6 @@ _mesa_destroy_context( GLcontext *ctx );  extern void -_mesa_context_initialize( GLcontext *ctx ); - - -extern void  _mesa_copy_context(const GLcontext *src, GLcontext *dst, GLuint mask); diff --git a/src/mesa/swrast/s_texture.c b/src/mesa/swrast/s_texture.c index b751d29b79..8415fb3ec9 100644 --- a/src/mesa/swrast/s_texture.c +++ b/src/mesa/swrast/s_texture.c @@ -1,4 +1,4 @@ -/* $Id: s_texture.c,v 1.27 2001/04/23 18:06:09 brianp Exp $ */ +/* $Id: s_texture.c,v 1.28 2001/05/03 14:11:53 brianp Exp $ */  /*   * Mesa 3-D graphics library @@ -280,7 +280,7 @@ sample_1d_nearest(GLcontext *ctx,     /* skip over the border, if any */     i += img->Border; -   if (i < 0 || i >= img->Width) { +   if (i < 0 || i >= (GLint) img->Width) {        /* Need this test for GL_CLAMP_TO_BORDER_ARB mode */        COPY_CHAN4(rgba, tObj->BorderColor);     } @@ -570,7 +570,7 @@ sample_2d_nearest(GLcontext *ctx,     i += img->Border;     j += img->Border; -   if (i < 0 || i >= img->Width || j < 0 || j >= img->Height) { +   if (i < 0 || i >= (GLint) img->Width || j < 0 || j >= (GLint) img->Height) {        /* Need this test for GL_CLAMP_TO_BORDER_ARB mode */        COPY_CHAN4(rgba, tObj->BorderColor);     } @@ -990,9 +990,9 @@ sample_3d_nearest(GLcontext *ctx,     COMPUTE_NEAREST_TEXEL_LOCATION(tObj->WrapT, t, height, j);     COMPUTE_NEAREST_TEXEL_LOCATION(tObj->WrapR, r, depth,  k); -   if (i < 0 || i >= img->Width || -       j < 0 || j >= img->Height || -       k < 0 || k >= img->Depth) { +   if (i < 0 || i >= (GLint) img->Width || +       j < 0 || j >= (GLint) img->Height || +       k < 0 || k >= (GLint) img->Depth) {        /* Need this test for GL_CLAMP_TO_BORDER_ARB mode */        COPY_CHAN4(rgba, tObj->BorderColor);     } diff --git a/src/mesa/tnl/t_imm_eval.c b/src/mesa/tnl/t_imm_eval.c index e946dfd1bf..747e6d1b14 100644 --- a/src/mesa/tnl/t_imm_eval.c +++ b/src/mesa/tnl/t_imm_eval.c @@ -1,4 +1,4 @@ -/* $Id: t_imm_eval.c,v 1.10 2001/05/01 13:18:03 keithw Exp $ */ +/* $Id: t_imm_eval.c,v 1.11 2001/05/03 14:11:18 brianp Exp $ */  /*   * Mesa 3-D graphics library @@ -130,7 +130,7 @@ static void eval1_4f_ca( struct gl_client_array *dest,  				   dimension, map->Order);        } -   dest->Size = MAX2(dest->Size, dimension); +   dest->Size = MAX2(dest->Size, (GLint) dimension);  } @@ -262,7 +262,7 @@ static void eval2_4f_ca( struct gl_client_array *dest,  				  map->Uorder, map->Vorder);        } -   dest->Size = MAX2(dest->Size, dimension); +   dest->Size = MAX2(dest->Size, (GLint) dimension);  } @@ -329,7 +329,7 @@ static void copy_4f_stride( GLfloat to[][4], GLfloat *from,     if (stride == 4 * sizeof(GLfloat))        MEMCPY( to, from, count * sizeof(to[0]));     else { -      int i; +      GLuint i;  /*        fprintf(stderr, "%s stride %d count %d\n", __FUNCTION__, */  /*  	      stride, count); */        for (i = 0 ; i < count ; i++, STRIDE_F(from, stride))  | 
