From fef303bc94f2fb15a068563ac8abfb1765bde035 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Wed, 5 May 2010 08:29:13 -0700 Subject: mesa: Remove _mesa_pow(), which is always just pow(). --- src/mesa/main/texfetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/main/texfetch.c') diff --git a/src/mesa/main/texfetch.c b/src/mesa/main/texfetch.c index 3169f3b3f56..24d29137b0c 100644 --- a/src/mesa/main/texfetch.c +++ b/src/mesa/main/texfetch.c @@ -60,7 +60,7 @@ nonlinear_to_linear(GLubyte cs8) table[i] = cs / 12.92f; } else { - table[i] = (GLfloat) _mesa_pow((cs + 0.055) / 1.055, 2.4); + table[i] = (GLfloat) pow((cs + 0.055) / 1.055, 2.4); } } tableReady = GL_TRUE; -- cgit v1.2.3