diff options
author | Daniel Borca <[email protected]> | 2004-01-23 15:57:52 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-01-23 15:57:52 +0000 |
commit | 3d06dc75816ef7f1c6e2c3f24a98dd2934c4c385 (patch) | |
tree | 74e43e286b3d3d947e58f73bd0a69b4a6d4aeaaf /src/mesa/drivers/glide/fxapi.c | |
parent | 3abf746a7eae52220485cd031aecec2ca9e6103e (diff) |
accomodated new driver_func initialization
added DMesaGetProcAddress
some other minor fixes
updated documentation
Diffstat (limited to 'src/mesa/drivers/glide/fxapi.c')
-rw-r--r-- | src/mesa/drivers/glide/fxapi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/glide/fxapi.c b/src/mesa/drivers/glide/fxapi.c index 75629cbd3f2..50f783f3b25 100644 --- a/src/mesa/drivers/glide/fxapi.c +++ b/src/mesa/drivers/glide/fxapi.c @@ -42,6 +42,8 @@ #if defined(FX) #include "fxdrv.h" +#include "drivers/common/driverfuncs.h" + #ifndef TDFX_DEBUG int TDFX_DEBUG = (0 /* | VERBOSE_VARRAY */ @@ -653,7 +655,6 @@ fxMesaCreateContext(GLuint win, } _mesa_init_driver_functions(&functions); - ctx->Driver. ctx = fxMesa->glCtx = _mesa_create_context(fxMesa->glVis, shareCtx, &functions, (void *) fxMesa); if (!ctx) { |