mesa: Remove _mesa_pow(), which is always just pow().

This commit is contained in:
Eric Anholt
2010-05-05 08:29:13 -07:00
parent 60a0535101
commit fef303bc94
9 changed files with 14 additions and 26 deletions

View File

@@ -78,7 +78,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;