From a96308c37db0bc0086a017d318bc3504aa5f0b1a Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Mon, 30 Oct 2000 13:31:59 +0000 Subject: Replace the flags Mesa was using for ctx->NewState with a new set based on the GL attribute groups. Introduced constants describing the circumstances under which some key derived values can change: _SWRAST_NEW_RASTERMASK -- ctx->RasterMask _SWRAST_NEW_TRIANGLE -- The software rasterizer's triangle function _DD_NEW_FEEDBACK -- the 'DD_FEEDBACK' bit in ctx->TriangleCaps These are helpful in deciding whether you need to recalculate state if your recalculation involves reference to a derived value. --- src/mesa/drivers/glide/fxdd.c | 27 +++++++++++++++++---------- src/mesa/drivers/glide/fxddtex.c | 5 ++++- src/mesa/drivers/glide/fxdrv.h | 30 ++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+), 11 deletions(-) (limited to 'src/mesa/drivers/glide') diff --git a/src/mesa/drivers/glide/fxdd.c b/src/mesa/drivers/glide/fxdd.c index b69b6999ea..3811770558 100644 --- a/src/mesa/drivers/glide/fxdd.c +++ b/src/mesa/drivers/glide/fxdd.c @@ -831,7 +831,7 @@ int fxDDInitFxMesaContext( fxMesaContext fxMesa ) fxMesa->glCtx->Const.MaxTextureLevels=9; fxMesa->glCtx->Const.MaxTextureSize=256; fxMesa->glCtx->Const.MaxTextureUnits=fxMesa->emulateTwoTMUs ? 2 : 1; - fxMesa->new_state = NEW_ALL; + fxMesa->new_state = _NEW_ALL; fxDDSetupInit(); fxDDCvaInit(); @@ -888,7 +888,7 @@ void fxDDInitExtensions( GLcontext *ctx ) gl_extensions_disable(ctx, "GL_EXT_blend_color"); gl_extensions_disable(ctx, "GL_EXT_fog_coord"); - gl_extensions_add(ctx, DEFAULT_ON, "3DFX_set_global_palette", 0); + gl_extensions_add(ctx, GL_TRUE, "3DFX_set_global_palette", 0); if (!fxMesa->haveTwoTMUs) gl_extensions_disable(ctx, "GL_EXT_texture_env_add"); @@ -1022,9 +1022,6 @@ static GLboolean fxIsInHardware(GLcontext *ctx) } - -#define INTERESTED (~(NEW_MODELVIEW|NEW_PROJECTION|NEW_PROJECTION|NEW_TEXTURE_MATRIX|NEW_USER_CLIP|NEW_CLIENT_STATE|NEW_TEXTURE_ENABLE)) - static void fxDDUpdateDDPointers(GLcontext *ctx) { fxMesaContext fxMesa=(fxMesaContext)ctx->DriverCtx; @@ -1033,23 +1030,26 @@ static void fxDDUpdateDDPointers(GLcontext *ctx) if (MESA_VERBOSE&(VERBOSE_DRIVER|VERBOSE_STATE)) fprintf(stderr,"fxmesa: fxDDUpdateDDPointers(...)\n"); - if (new_state & (NEW_RASTER_OPS|NEW_TEXTURING)) + if (new_state & _FX_NEW_FALLBACK) fxMesa->is_in_hardware = fxIsInHardware(ctx); if (fxMesa->is_in_hardware) { if (fxMesa->new_state) fxSetupFXUnits(ctx); - if(new_state & INTERESTED) { + if (new_state & _FX_NEW_RENDERSTATE) { fxDDChooseRenderState( ctx ); + fxMesa->RenderVBTables=fxDDChooseRenderVBTables(ctx); fxMesa->RenderVBClippedTab=fxMesa->RenderVBTables[0]; fxMesa->RenderVBCulledTab=fxMesa->RenderVBTables[1]; fxMesa->RenderVBRawTab=fxMesa->RenderVBTables[2]; - - ctx->Driver.RasterSetup=fxDDChooseSetupFunction(ctx); } - + + if (new_state & _FX_NEW_SETUP_FUNCTION) + ctx->Driver.RasterSetup=fxDDChooseSetupFunction(ctx); + + ctx->Driver.PointsFunc=fxMesa->PointsFunc; ctx->Driver.LineFunc=fxMesa->LineFunc; ctx->Driver.TriangleFunc=fxMesa->TriangleFunc; @@ -1075,6 +1075,13 @@ void fxSetupDDPointers(GLcontext *ctx) fprintf(stderr,"fxmesa: fxSetupDDPointers()\n"); } + ctx->Driver.UpdateStateNotify = (_FX_NEW_SETUP_FUNCTION| + _FX_NEW_RENDERSTATE| + _FX_NEW_FALLBACK| + _SWRAST_NEW_TRIANGLE| + _SWRAST_NEW_LINE| + _SWRAST_NEW_POINT); + ctx->Driver.UpdateState=fxDDUpdateDDPointers; ctx->Driver.WriteDepthSpan=fxDDWriteDepthSpan; diff --git a/src/mesa/drivers/glide/fxddtex.c b/src/mesa/drivers/glide/fxddtex.c index 3c628d2fcf..553dc8f86a 100644 --- a/src/mesa/drivers/glide/fxddtex.c +++ b/src/mesa/drivers/glide/fxddtex.c @@ -340,7 +340,10 @@ void fxDDTexDel(GLcontext *ctx, struct gl_texture_object *tObj) FREE(ti); tObj->DriverData = NULL; - ctx->NewState |= NEW_TEXTURING; +/* Pushed into core: Set _NEW_TEXTURE whenever a bound texture is + * deleted (changes bound texture id). + */ +/* ctx->NewState |= _NEW_TEXTURE; */ } diff --git a/src/mesa/drivers/glide/fxdrv.h b/src/mesa/drivers/glide/fxdrv.h index e3a865b0d4..412f3cb15d 100644 --- a/src/mesa/drivers/glide/fxdrv.h +++ b/src/mesa/drivers/glide/fxdrv.h @@ -412,6 +412,36 @@ struct tfxMesaVertexBuffer { #endif + + +/* Covers the state referenced by IsInHardware: + */ +#define _FX_NEW_FALLBACK (_NEW_TEXTURE| \ + _NEW_HINT| \ + _NEW_STENCIL| \ + _NEW_BUFFERS| \ + _NEW_COLOR| \ + _NEW_LIGHT) + +/* Covers the state referenced by fxDDChooseRenderState and + * fxDDChoseRenderVBTables. + */ +#define _FX_NEW_RENDERSTATE (_NEW_RENDERMODE | \ + _DD_NEW_FLATSHADE | \ + _DD_NEW_TRI_LIGHT_TWOSIDE| \ + _DD_NEW_MULTIDRAW | \ + _NEW_POINT | \ + _NEW_LINE | \ + _NEW_POLYGON) + +/* Covers the state referenced by fxDDChooseSetupFunction. + */ +#define _FX_NEW_SETUP_FUNCTION (_NEW_LIGHT| \ + _NEW_FOG| \ + _NEW_TEXTURE| \ + _NEW_COLOR) \ + + /* These lookup table are used to extract RGB values in [0,255] from * 16-bit pixel values. */ -- cgit v1.2.3