summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/light.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-10-25 21:06:26 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-10-25 21:06:26 +0000
commit367d308b8267ad86cd7623590b7bfd4737b5fbf5 (patch)
tree0ff79c1667eb62f514e6ac5acd4211927256fb88 /src/mesa/main/light.h
parente781aec85d30182eea1b6dab5fb9dd06594f5671 (diff)
downloadexternal_mesa3d-367d308b8267ad86cd7623590b7bfd4737b5fbf5.zip
external_mesa3d-367d308b8267ad86cd7623590b7bfd4737b5fbf5.tar.gz
external_mesa3d-367d308b8267ad86cd7623590b7bfd4737b5fbf5.tar.bz2
wrapped a few more C library functions
Diffstat (limited to 'src/mesa/main/light.h')
-rw-r--r--src/mesa/main/light.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/light.h b/src/mesa/main/light.h
index 5cd24e8..63c40f8 100644
--- a/src/mesa/main/light.h
+++ b/src/mesa/main/light.h
@@ -1,4 +1,4 @@
-/* $Id: light.h,v 1.14 2001/09/14 21:36:43 brianp Exp $ */
+/* $Id: light.h,v 1.15 2002/10/25 21:06:30 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -86,7 +86,7 @@ do { \
float f = (dp * (SHINE_TABLE_SIZE-1)); \
int k = (int) f; \
if (k > SHINE_TABLE_SIZE-2) \
- result = (GLfloat) pow( dp, _tab->shininess ); \
+ result = (GLfloat) _mesa_pow( dp, _tab->shininess ); \
else \
result = _tab->tab[k] + (f-k)*(_tab->tab[k+1]-_tab->tab[k]); \
} while (0)