diff options
author | Daniel Borca <[email protected]> | 2004-07-29 08:31:26 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-07-29 08:31:26 +0000 |
commit | d9166e132e150945e04d2fc9214da0796cd36a02 (patch) | |
tree | cfe286a4a1fecf1d681c89ce1f8989e540211ead | |
parent | 10e768c11b5b4e86e17c4b9356dd18cde1a8a61d (diff) |
disabled automatic mipmaps until we can handle 565 textures.
-rw-r--r-- | src/mesa/drivers/dri/tdfx/tdfx_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/tdfx/tdfx_context.c b/src/mesa/drivers/dri/tdfx/tdfx_context.c index ea9ec077cd7..294d9c82cce 100644 --- a/src/mesa/drivers/dri/tdfx/tdfx_context.c +++ b/src/mesa/drivers/dri/tdfx/tdfx_context.c @@ -97,7 +97,9 @@ static void tdfxDDInitExtensions( GLcontext *ctx ) _mesa_enable_extension( ctx, "GL_EXT_blend_subtract" ); _mesa_enable_extension( ctx, "GL_EXT_blend_equation_separate" ); } else { +#if 0 /*[dBorca] cannot handle 565. badbad! revise*/ _mesa_enable_extension( ctx, "GL_SGIS_generate_mipmap" ); +#endif } if (fxMesa->haveHwStencil) { |