diff options
author | Brian Paul <[email protected]> | 2002-10-25 21:06:26 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-10-25 21:06:26 +0000 |
commit | 367d308b8267ad86cd7623590b7bfd4737b5fbf5 (patch) | |
tree | 0ff79c1667eb62f514e6ac5acd4211927256fb88 /src/mesa/main/light.h | |
parent | e781aec85d30182eea1b6dab5fb9dd06594f5671 (diff) |
wrapped a few more C library functions
Diffstat (limited to 'src/mesa/main/light.h')
-rw-r--r-- | src/mesa/main/light.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/light.h b/src/mesa/main/light.h index 5cd24e83ff4..63c40f87975 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) |