From 14940c4ffe066a8b85bc14274c19ad3d8e334d61 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Sun, 5 Nov 2000 18:40:57 +0000 Subject: - Changes for new software rasterizer modules - Remove support for choosing software fallbacks from core code - Remove partial fallback code from vbrender.c -- drivers are now expected to be able to find a triangle/quad function for every state, even if they have to use _swsetup_Triangle or _swsetup_Quad. - Marked derived variables in the GLcontext struct with a leading underscore '_'. --- src/mesa/main/blend.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/mesa/main/blend.c') diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c index 91267cda7f..be7baf3547 100644 --- a/src/mesa/main/blend.c +++ b/src/mesa/main/blend.c @@ -1,4 +1,4 @@ -/* $Id: blend.c,v 1.24 2000/10/31 18:09:44 keithw Exp $ */ +/* $Id: blend.c,v 1.25 2000/11/05 18:40:57 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -108,7 +108,6 @@ _mesa_BlendFunc( GLenum sfactor, GLenum dfactor ) (*ctx->Driver.BlendFunc)( ctx, sfactor, dfactor ); } - ctx->Color.BlendFunc = NULL; ctx->NewState |= _NEW_COLOR; } @@ -238,7 +237,6 @@ _mesa_BlendFuncSeparateEXT( GLenum sfactorRGB, GLenum dfactorRGB, return; } - ctx->Color.BlendFunc = NULL; ctx->NewState |= _NEW_COLOR; if (ctx->Driver.BlendFuncSeparate) { @@ -299,7 +297,6 @@ _mesa_BlendEquation( GLenum mode ) ctx->Color.ColorLogicOpEnabled = GL_FALSE; } - ctx->Color.BlendFunc = NULL; ctx->NewState |= _NEW_COLOR; if (ctx->Driver.BlendEquation) -- cgit v1.2.3