summaryrefslogtreecommitdiff
path: root/src/mesa/main/light.h
diff options
context:
space:
mode:
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 5cd24e83ff..63c40f8797 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)