diff options
author | Keith Whitwell <[email protected]> | 2001-03-29 21:16:25 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-03-29 21:16:25 +0000 |
commit | ed39a43b8cb2e1cf69b097fc89365cde470ebf51 (patch) | |
tree | e886defa720e33ec795c7ffb7941fcab5c5b8e1d /src/mesa/swrast_setup | |
parent | 2780ed4b978b32a08be6eecb0e923250e7b907ee (diff) |
Remove ENABLE_* flags, ctx->_Enabled.
Replace with ctx->Texture._TexMatEnabled, ctx->Texture._TexGenEnabled.
Diffstat (limited to 'src/mesa/swrast_setup')
-rw-r--r-- | src/mesa/swrast_setup/ss_vb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast_setup/ss_vb.c b/src/mesa/swrast_setup/ss_vb.c index eb3e0ec3fc6..f9d1d019975 100644 --- a/src/mesa/swrast_setup/ss_vb.c +++ b/src/mesa/swrast_setup/ss_vb.c @@ -1,4 +1,4 @@ -/* $Id: ss_vb.c,v 1.11 2001/03/12 00:48:43 gareth Exp $ */ +/* $Id: ss_vb.c,v 1.12 2001/03/29 21:16:26 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -298,7 +298,7 @@ _swsetup_choose_rastersetup_func(GLcontext *ctx) else funcindex = 0; -/* printSetupFlags("software setup func", funcindex); */ + if (0) printSetupFlags("software setup func", funcindex); swsetup->BuildProjVerts = setup_func[funcindex]; ASSERT(setup_func[funcindex] != rs_invalid); } |