summaryrefslogtreecommitdiff
path: root/src/mesa/math
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-05-05 08:36:20 -0700
committerEric Anholt <eric@anholt.net>2010-05-13 13:02:09 -0700
commit165694ad65374ff4330bd80acb398fe0428ba2e6 (patch)
treef74edc1cddd7f3a53ef2fd2cd7adbe229fa9be7f /src/mesa/math
parentfef303bc94f2fb15a068563ac8abfb1765bde035 (diff)
mesa: Remove no-op wrappers around trig functions.
Diffstat (limited to 'src/mesa/math')
-rw-r--r--src/mesa/math/m_matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/math/m_matrix.c b/src/mesa/math/m_matrix.c
index 4b33d0bbb37..048b231c4ed 100644
--- a/src/mesa/math/m_matrix.c
+++ b/src/mesa/math/m_matrix.c
@@ -804,8 +804,8 @@ _math_matrix_rotate( GLmatrix *mat,
GLfloat m[16];
GLboolean optimized;
- s = (GLfloat) _mesa_sin( angle * DEG2RAD );
- c = (GLfloat) _mesa_cos( angle * DEG2RAD );
+ s = (GLfloat) sin( angle * DEG2RAD );
+ c = (GLfloat) cos( angle * DEG2RAD );
memcpy(m, Identity, sizeof(GLfloat)*16);
optimized = GL_FALSE;