diff options
author | Daniel Borca <[email protected]> | 2003-10-13 11:14:58 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2003-10-13 11:14:58 +0000 |
commit | fd83bc2b33f34195f05300eee6ebfe18570177a0 (patch) | |
tree | 433f88c7c1ef8f0ee36b3cd1884e0d1bd58c7c30 /src/mesa/drivers/glide/fxsetup.c | |
parent | 6c520ef3d30c86aeb856e7db5076fb474d008d84 (diff) |
glide driver (wip)
Diffstat (limited to 'src/mesa/drivers/glide/fxsetup.c')
-rw-r--r-- | src/mesa/drivers/glide/fxsetup.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mesa/drivers/glide/fxsetup.c b/src/mesa/drivers/glide/fxsetup.c index 2959fede15a..d9c42dd088f 100644 --- a/src/mesa/drivers/glide/fxsetup.c +++ b/src/mesa/drivers/glide/fxsetup.c @@ -1,4 +1,4 @@ -/* $Id: fxsetup.c,v 1.41 2003/10/09 15:12:21 dborca Exp $ */ +/* $Id: fxsetup.c,v 1.42 2003/10/13 11:14:58 dborca Exp $ */ /* * Mesa 3-D graphics library @@ -549,6 +549,12 @@ fxSetupTextureSingleTMU_NoLock(GLcontext * ctx, GLuint textureset) } break; case GL_BLEND: +#if 1 + if (TDFX_DEBUG & VERBOSE_DRIVER) { + fprintf(stderr, "%s: GL_BLEND not quite supported\n", __FUNCTION__); + } + return; +#else /* * XXX we can't do real GL_BLEND mode. These settings assume that * the TexEnv color is black and incoming fragment color is white. @@ -584,10 +590,8 @@ fxSetupTextureSingleTMU_NoLock(GLcontext * ctx, GLuint textureset) colorComb.Invert = FXTRUE; } /* XXX return GL_FALSE for modes we don't support */ - if (TDFX_DEBUG & VERBOSE_DRIVER) { - fprintf(stderr, "%s: GL_BLEND not quite supported\n", __FUNCTION__); - } break; +#endif case GL_REPLACE: if ((ifmt == GL_RGB) || (ifmt == GL_LUMINANCE)) { alphaComb.Function = GR_COMBINE_FUNCTION_LOCAL; |