diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2001-02-06 04:06:34 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2001-02-06 04:06:34 +0000 |
commit | d1baa05439c7157eeca42ec191d5375821725bdd (patch) | |
tree | bfd3ff31b803f177d678ab3b6783b876c1938fec /src/mesa/main/imports.c | |
parent | 8fd9f1748d12751683cf8039401a7f7f66ab73fa (diff) |
Use a lookup table to compute exponents in tnl fogging code. Slightly
clean up the shine table lookup macro.
Diffstat (limited to 'src/mesa/main/imports.c')
-rw-r--r-- | src/mesa/main/imports.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 93fb906f35..e36f7a24b0 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -1,4 +1,4 @@ -/* $Id: imports.c,v 1.4 2001/01/08 04:09:41 keithw Exp $ */ +/* $Id: imports.c,v 1.5 2001/02/06 04:06:35 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -158,7 +158,7 @@ _mesa_InitDefaultImports(__GLimports *imports, void *driverCtx, void *other) imports->warning = _mesa_warning; imports->fatal = _mesa_fatal; imports->getenv = _mesa_getenv; -/* imports->atoi = _mesa_atoi; */ + imports->atoi = _mesa_atoi; imports->sprintf = _mesa_sprintf; imports->fopen = _mesa_fopen; imports->fclose = _mesa_fclose; |