diff options
author | Daniel Borca <[email protected]> | 2003-12-10 15:24:49 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2003-12-10 15:24:49 +0000 |
commit | 28442852978e8ca0bcc5fda6393fc7b94fcf2bbf (patch) | |
tree | fb627fe1aea1faccf98d34316041aa925a56115a /src/mesa/drivers/glide/fxglidew.c | |
parent | 43be8ee414369f2745de0cf936f9767ee31df991 (diff) |
got rid of __FUNCTION__ :(
Texus2 functions are dynamically linked now
made getRegistryOrEnvironmentString more portable
bugfix: unnecessary total SW fallback -- glColorMask
bugfix: when shared palette was not loaded correctly
point_attenuation_stage back in business (point size/atten)
fxTexGetInfo is not required for fxIsTexSupported
fxDDChooseTextureFormat optimized for RGB/RGBA textures
accelerated Quads with Triangle_Fans
more WGL extensions/functions (also updated export file)
DXTC/S3TC -> FXT1 wrapping hack
quick & dirty fix for Quake2
Diffstat (limited to 'src/mesa/drivers/glide/fxglidew.c')
-rw-r--r-- | src/mesa/drivers/glide/fxglidew.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/glide/fxglidew.c b/src/mesa/drivers/glide/fxglidew.c index 76df0286937..e386b0d8250 100644 --- a/src/mesa/drivers/glide/fxglidew.c +++ b/src/mesa/drivers/glide/fxglidew.c @@ -55,7 +55,7 @@ FX_grGetInteger_NoLock(FxU32 pname) } if (TDFX_DEBUG & VERBOSE_DRIVER) { - fprintf(stderr, "%s: wrong parameter (%lx)\n", __FUNCTION__, pname); + fprintf(stderr, "FX_grGetInteger_NoLock: wrong parameter (%lx)\n", pname); } return -1; } @@ -232,7 +232,6 @@ FX_grSstQueryHardware(GrHwConfiguration * config) config->SSTs[i].HaveCmbExt = (strstr(extension, " COMBINE ") != NULL); config->SSTs[i].HaveMirExt = (strstr(extension, " TEXMIRROR ") != NULL); config->SSTs[i].HaveTexUma = (strstr(extension, " TEXUMA ") != NULL); - config->SSTs[i].HaveTexus2 = GL_FALSE; /* number of Voodoo chips */ grGet(GR_NUM_FB, 4, (void *) &numFB); |