diff options
author | Keith Whitwell <[email protected]> | 2001-01-08 04:09:41 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-01-08 04:09:41 +0000 |
commit | b980b2eeb62dc48101a7481d02d196c80b9da397 (patch) | |
tree | 2b9bf4b63b99a6df4e96123181da0a624289ad92 /src/mesa/main/imports.c | |
parent | 44d8de433e684cb4c2bc4dfc5cc6919af1f3cc55 (diff) |
Add a 'RenderPrimitive' callback to t_vb_render.c. Helps out drivers
that used to require a 'ReducedPrimitiveChange' callback.
Various compilation fixes for XFree86.
Reverted to the older version of glcore.h used internally in XFree86, and
moved it to 'Mesa/include/GL/internal/glcore.h', for compatibility with
XFree86.
Diffstat (limited to 'src/mesa/main/imports.c')
-rw-r--r-- | src/mesa/main/imports.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index bb3c49376c8..93fb906f35f 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -1,4 +1,4 @@ -/* $Id: imports.c,v 1.3 2000/11/22 07:32:17 joukj Exp $ */ +/* $Id: imports.c,v 1.4 2001/01/08 04:09:41 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -76,6 +76,11 @@ _mesa_warning(__GLcontext *gc, char *str) #ifdef DEBUG debug = GL_TRUE; #else +/* Whacko XFree86 macro: + */ +#ifdef getenv +#undef getenv +#endif if (gc->imports.getenv(gc, "MESA_DEBUG")) { debug = GL_TRUE; } @@ -99,7 +104,7 @@ static char * _mesa_getenv(__GLcontext *gc, const char *var) { (void) gc; - return getenv(var); + return gc->imports.getenv(gc, var); } static int @@ -153,12 +158,12 @@ _mesa_InitDefaultImports(__GLimports *imports, void *driverCtx, void *other) imports->warning = _mesa_warning; imports->fatal = _mesa_fatal; imports->getenv = _mesa_getenv; - imports->atoi = _mesa_atoi; +/* imports->atoi = _mesa_atoi; */ imports->sprintf = _mesa_sprintf; imports->fopen = _mesa_fopen; imports->fclose = _mesa_fclose; imports->fprintf = _mesa_fprintf; imports->getDrawablePrivate = _mesa_GetDrawablePrivate; - imports->wscx = driverCtx; - imports->other = other; +/* imports->wscx = driverCtx; */ + imports->other = driverCtx; } |