FX_grGlideGetState((GrState *) fxMesa->state);
/* Run the config file */
- _mesa_context_initialize(fxMesa->glCtx);
+ _mesa_read_config_file(fxMesa->glCtx);
return 1;
}
-/* $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
/* Run the config file
*/
- _mesa_context_initialize( ctx );
+ _mesa_read_config_file( ctx );
return c;
-/* $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
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);
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));
}
-/* $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
#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)? */
-/*
- * 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
-/* $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
_mesa_destroy_context( GLcontext *ctx );
-extern void
-_mesa_context_initialize( GLcontext *ctx );
-
-
extern void
_mesa_copy_context(const GLcontext *src, GLcontext *dst, GLuint mask);
-/* $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
/* 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);
}
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);
}
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);
}
-/* $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
dimension, map->Order);
}
- dest->Size = MAX2(dest->Size, dimension);
+ dest->Size = MAX2(dest->Size, (GLint) dimension);
}
map->Uorder, map->Vorder);
}
- dest->Size = MAX2(dest->Size, dimension);
+ dest->Size = MAX2(dest->Size, (GLint) dimension);
}
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))